Searched refs:with (Results 101 - 125 of 231) sorted by relevance

12345678910

/openjdk10/jaxp/src/java.xml/share/classes/jdk/xml/internal/
H A DJdkXmlUtils.java18 * 2 along with this work; if not, write to the Free Software Foundation,
109 * Sets the XMLReader instance with the specified property if the the
161 builder = builder.with(CatalogFeatures.Feature.FILES, file);
164 builder = builder.with(CatalogFeatures.Feature.PREFER, prefer);
167 builder = builder.with(CatalogFeatures.Feature.DEFER, defer);
170 builder = builder.with(CatalogFeatures.Feature.RESOLVE, resolve);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/
H A DCatalogUtil.java18 * 2 along with this work; if not, write to the Free Software Foundation,
46 .with(Feature.RESOLVE, "continue")
/openjdk10/jdk/src/jdk.jlink/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
38 * or the {@link java.util.ServiceLoader service loader} with the name
62 provides java.util.spi.ToolProvider with
66 provides jdk.tools.jlink.plugin.Plugin with
/openjdk10/jdk/src/jdk.jdi/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
136 provides com.sun.jdi.connect.Connector with
/openjdk10/jdk/src/java.naming/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
50 provides java.security.Provider with
/openjdk10/jdk/src/jdk.security.auth/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
45 provides javax.security.auth.spi.LoginModule with
/openjdk10/jdk/test/java/time/tck/java/time/
H A DTestIsoChronology.java16 * 2 along with this work; if not, write to the Free Software Foundation,
34 * Redistribution and use in source and binary forms, with or without
42 * and/or other materials provided with the distribution.
206 // with(DateTimeAdjuster)
211 LocalDate test = base.with(TemporalAdjusters.lastDayOfMonth());
218 LocalDate test = base.with(TemporalAdjusters.lastDayOfMonth());
223 // ISODate.with(Local*)
228 LocalDate test = isoDate.with(LocalDate.of(2012, 7, 6));
235 assertEquals(IsoChronology.INSTANCE.date(1726, 4, 4), isoDate.with(Month.APRIL));
239 // LocalDate.with(ISODat
[all...]
/openjdk10/make/devkit/
H A DTools.gmk18 # 2 along with this work; if not, write to the Free Software Foundation,
193 # we're creating multi-lib compiler with 32bit libc as well, so we should
282 --with-sysroot=$(SYSROOT) \
300 # we build just the libs again for TARGET, then with whatever the arch
315 --with-sysroot=$(SYSROOT) \
333 --with-gmp=$(PREFIX) \
350 --with-mpfr=$(PREFIX) \
365 --with-mpfr=$(PREFIX) \
366 --with-gmp=$(PREFIX) \
381 # and link and assemble with th
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/time/
H A DYearMonth.java18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * Redistribution and use in source and binary forms, with or without
44 * and/or other materials provided with the distribution.
311 * Returns a copy of this year-month with the new year and month, checking
318 private YearMonth with(int newYear, int newMonth) { method in class:YearMonth
331 * {@link #get(TemporalField) get} and {@link #with(TemporalField, long)}
553 * remainder. However, years divisible by 100, are not leap years, with
609 * This returns a {@code YearMonth}, based on this one, with the year-month adjusted.
624 * @return a {@code YearMonth} based on {@code this} with the adjustment made, not null
629 public YearMonth with(TemporalAdjuste method in class:YearMonth
682 public YearMonth with(TemporalField field, long newValue) { method in class:YearMonth
[all...]
H A DMonthDay.java18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * Redistribution and use in source and binary forms, with or without
44 * and/or other materials provided with the distribution.
447 // alignedDOW and alignedWOM not supported because they cannot be set in with()
514 * Returns a copy of this {@code MonthDay} with the month-of-year altered.
516 * This returns a month-day with the specified month.
523 * @return a {@code MonthDay} based on this month-day with the requested month, not null
527 return with(Month.of(month));
531 * Returns a copy of this {@code MonthDay} with the month-of-year altered.
533 * This returns a month-day with th
542 public MonthDay with(Month month) { method in class:MonthDay
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/time/chrono/
H A DChronoLocalDateTime.java18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * Redistribution and use in source and binary forms, with or without
44 * and/or other materials provided with the distribution.
107 * interface, even in the case where the application needs to deal with multiple
114 * This interface must be implemented with care to ensure other classes operate correctly.
159 * {@link Chronology#localDateTime(TemporalAccessor)} with the extracted chronology.
199 * This returns a local date with the same year, month and day
209 * This returns a local time with the same hour, minute, second and
221 * {@link #get(TemporalField) get} and {@link #with(TemporalField, long)}
272 default ChronoLocalDateTime<D> with(TemporalAdjuste method in interface:ChronoLocalDateTime
282 ChronoLocalDateTime<D> with(TemporalField field, long newValue); method in interface:ChronoLocalDateTime
[all...]
H A DChronoLocalDateImpl.java18 * 2 along with this work; if not, write to the Free Software Foundation,
31 * Redistribution and use in source and binary forms, with or without
39 * and/or other materials provided with the distribution.
87 * Note that not all calendar systems are suitable for use with this class.
93 * at the user interface level to deal with localized input/output.
116 * ChronoLocalDate first = now1.with(ChronoField.DAY_OF_MONTH, 1)
117 * .with(ChronoField.MONTH_OF_YEAR, 1);
136 * This abstract class must be implemented with care to ensure other classes operate correctly.
178 public D with(TemporalAdjuster adjuster) { method in class:ChronoLocalDateImpl
179 return (D) ChronoLocalDate.super.with(adjuste
184 public D with(TemporalField field, long value) { method in class:ChronoLocalDateImpl
[all...]
H A DChronoLocalDate.java18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * Redistribution and use in source and binary forms, with or without
44 * and/or other materials provided with the distribution.
104 * interface, even in the case where the application needs to deal with multiple
122 * to code that is intended to deal with any arbitrary calendar system.
150 * calendar systems increases the complications of interacting with persistence.
180 * where the year-of-era restarts with the reign of every new Emperor.
200 * and confines it to the UI layer. This approach is in keeping with other localization
232 * This interface must be implemented with care to ensure other classes operate correctly.
275 * {@link Chronology#date(TemporalAccessor)} with th
427 default ChronoLocalDate with(TemporalAdjuster adjuster) { method in interface:ChronoLocalDate
438 default ChronoLocalDate with(TemporalField field, long newValue) { method in interface:ChronoLocalDate
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/scripts/
H A Dstart-rmiregistry.bat18 REM 2 along with this work; if not, write to the Free Software Foundation,
43 @echo Start the rmi registry with with sa-jdi.jar on the bootclasspath
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/catalog/
H A DCatalogAccessTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
48 with(CatalogFeatures.Feature.PREFER, "system").build();
H A DCatalogFileInputTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
72 with(CatalogFeatures.Feature.PREFER, "system").build();
106 * Verifies that the Catalog can be created with file system paths including JAR
127 CatalogFeatures.builder().with(CatalogFeatures.Feature.RESOLVE, "strict").build(),
135 CatalogFeatures.builder().with(CatalogFeatures.Feature.RESOLVE, "continue").build(),
143 .with(CatalogFeatures.Feature.FILES, file)
162 .with(CatalogFeatures.Feature.FILES, null)
181 String errMsg = "Relative rewriteSystem with xml:base at group level failed";
218 * rejected with an IAE.
/openjdk10/jaxp/test/javax/xml/jaxp/functional/catalog/
H A DUriTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
88 CatalogFeatures.builder().with(CatalogFeatures.Feature.RESOLVE,
H A DSpecifyCatalogTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
110 return builder().with(FILES, getCatalogPath(catalogName).toASCIIString()).build();
/openjdk10/jdk/test/java/time/test/java/time/chrono/
H A DTestExampleCode.java18 * 2 along with this work; if not, write to the Free Software Foundation,
31 * Redistribution and use in source and binary forms, with or without
39 * and/or other materials provided with the distribution.
106 .with(ChronoField.DAY_OF_MONTH, 1)
107 .with(ChronoField.MONTH_OF_YEAR, 1);
159 .with(ChronoField.DAY_OF_MONTH, 1)
160 .with(ChronoField.MONTH_OF_YEAR, 1);
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DStringCoding.java18 * 2 along with this work; if not, write to the Free Software Foundation,
123 Result with() { method in class:StringCoding.Result
129 Result with(char[] val, int off, int len) { method in class:StringCoding.Result
143 Result with(byte[] val, byte coder) { method in class:StringCoding.Result
191 return result.with();
196 return result.with(Arrays.copyOfRange(ba, off, off + len),
199 return result.with(StringLatin1.inflate(ba, off, len), UTF16);
206 return result.with(ca, 0, clen);
223 return result.with(ca, 0, cb.position());
233 return result.with(Array
[all...]
/openjdk10/jdk/test/java/time/tck/java/time/temporal/
H A DTCKWeekFields.java18 * 2 along with this work; if not, write to the Free Software Foundation,
31 * Redistribution and use in source and binary forms, with or without
39 * and/or other materials provided with the distribution.
140 assertEquals(date.with(WeekFields.ISO.dayOfWeek(), 2), LocalDate.of(2000, 1, 11));
141 assertEquals(date.with(WeekFields.ISO.dayOfWeek(), 7), LocalDate.of(2000, 1, 16));
143 assertEquals(date.with(WeekFields.SUNDAY_START.dayOfWeek(), 3), LocalDate.of(2000, 1, 11));
144 assertEquals(date.with(WeekFields.SUNDAY_START.dayOfWeek(), 7), LocalDate.of(2000, 1, 15));
146 assertEquals(date.with(WeekFields.of(DayOfWeek.SATURDAY, 1).dayOfWeek(), 4), LocalDate.of(2000, 1, 11));
147 assertEquals(date.with(WeekFields.of(DayOfWeek.TUESDAY, 1).dayOfWeek(), 1), LocalDate.of(2000, 1, 4));
180 // week of the 1st is partial; start with firs
[all...]
/openjdk10/common/autoconf/
H A Dconfigure17 # 2 along with this work; if not, write to the Free Software Foundation,
114 # be regenerated. This test is required to ensure consistency with custom source.
219 echo "Error: Specifying --openjdk-target together with autoconf"
236 # Make configure exit with error on invalid options as default.
277 --openjdk-target=TARGET cross-compile with TARGET as target platform
281 --debug-configure Run the configure script with additional debug
300 echo configure exiting with result code $conf_result_code
/openjdk10/jdk/src/java.base/share/classes/sun/security/x509/
H A DAlgorithmId.java18 * 2 along with this work; if not, write to the Free Software Foundation,
37 * of which may be associated with parameters. Instances of this base class
98 * Constructs an algorithm ID with algorithm parameters.
165 // Changes backed out for compatibility with Solaris
170 // AlgorithmIdentifiers with absent parameters.
177 // rfc3370 3.1: When the id-dsa-with-sha1 algorithm identifier
262 * with the same parameters.
341 * with some kind of special support for this algorithm.
377 * with this algorithm name.
391 * with thi
[all...]
/openjdk10/jdk/src/java.management/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
73 provides javax.security.auth.spi.LoginModule with
/openjdk10/jdk/test/javax/management/remote/mandatory/loading/
H A DRMIDownloadTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
32 * @run main RMIDownloadTest receive with
33 * @run main RMIDownloadTest send with
48 * (with-codebase, without-codebase). Doing all four tests within the same
123 Arrays.asList("with", "without").indexOf(args[1]);
126 throw new Exception("Usage: RMIDownloadTest (send|receive) (with|without)");
128 final boolean with = (withIndex == 0);
161 if (with) {
162 // Test with the codebase property. Downloading should work.
165 System.out.println("Testing with codebas
[all...]

Completed in 291 milliseconds

12345678910