- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 2,709 for option (0.04 sec)
-
istioctl/pkg/metrics/metrics_test.go
} func (client mockPromAPI) LabelNames( ctx context.Context, matches []string, startTime time.Time, endTime time.Time, options ...promv1.Option, ) ([]string, promv1.Warnings, error) { return nil, nil, nil } func (client mockPromAPI) LabelValues(context.Context, string, []string, time.Time, time.Time, ...promv1.Option, ) (prometheus_model.LabelValues, promv1.Warnings, error) { return nil, nil, nil }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 01:35:47 UTC 2024 - 8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java
option.getDefaultValue().isPresent() ? option.getDefaultValue().get() : option.getKey()) .text(option.getDescription()) .add(); } listPromptBuilder.addPrompt(); } else if (field.getDefaultValue().isPresent()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} // check for presence of deprecated options and print warning boolean fail = false; for (Option option : cliRequest.commandLine.getOptions()) { if (option.isDeprecated()) { StringBuilder sb = new StringBuilder(); sb.append("The option -").append(option.getOpt()); if (option.getLongOpt() != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/searchOptions.jsp
<label for="contentNum"><la:message key="labels.index_num" /></label> <la:select property="num" styleId="numSearchOption" styleClass="form-control"> <option value="10"> <la:message key="labels.search_result_select_num" /> </option> <la:option value="10">10</la:option> <la:option value="20">20</la:option> <la:option value="30">30</la:option> <la:option value="40">40</la:option>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 17 08:19:53 UTC 2019 - 3.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/searchOptions.jsp
<label for="contentNum"><la:message key="labels.index_num" /></label> <la:select property="num" styleId="numSearchOption" styleClass="form-control"> <option value="10"> <la:message key="labels.search_result_select_num" /> </option> <la:option value="10">10</la:option> <la:option value="20">20</la:option> <la:option value="30">30</la:option> <la:option value="40">40</la:option>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 17 08:19:53 UTC 2019 - 3.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/ByteSinkTest.java
sink.writeFrom(in); assertFalse(in.closed()); } public void testClosesOnErrors_copyingFromByteSourceThatThrows() { for (TestOption option : EnumSet.of(OPEN_THROWS, READ_THROWS, CLOSE_THROWS)) { TestByteSource failSource = new TestByteSource(new byte[10], option); TestByteSink okSink = new TestByteSink(); assertThrows(IOException.class, () -> failSource.copyTo(okSink));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 3.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/ByteSinkTest.java
sink.writeFrom(in); assertFalse(in.closed()); } public void testClosesOnErrors_copyingFromByteSourceThatThrows() { for (TestOption option : EnumSet.of(OPEN_THROWS, READ_THROWS, CLOSE_THROWS)) { TestByteSource failSource = new TestByteSource(new byte[10], option); TestByteSink okSink = new TestByteSink(); assertThrows(IOException.class, () -> failSource.copyTo(okSink));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
protected static void copyBeanToBean(final Object src, final Object dest, final Consumer<CopyOptions> option) { BeanUtil.copyBeanToBean(src, dest, option); } protected static void copyMapToBean(final Map<String, ? extends Object> src, final Object dest, final Consumer<CopyOptions> option) { BeanUtil.copyMapToBean(src, dest, option); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 9.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/TestOutputStream.java
private final ImmutableSet<TestOption> options; private boolean closed; public TestOutputStream(OutputStream out, TestOption... options) throws IOException { this(out, Arrays.asList(options)); } public TestOutputStream(OutputStream out, Iterable<TestOption> options) throws IOException { super(checkNotNull(out)); this.options = ImmutableSet.copyOf(options); throwIf(OPEN_THROWS); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.2K bytes - Viewed (0) -
migrator.go
func (db *DB) AutoMigrate(dst ...interface{}) error { return db.Migrator().AutoMigrate(dst...) } // ViewOption view option type ViewOption struct { Replace bool // If true, exec `CREATE`. If false, exec `CREATE OR REPLACE` CheckOption string // optional. e.g. `WITH [ CASCADED | LOCAL ] CHECK OPTION` Query *DB // required subquery. } // ColumnType column type interface type ColumnType interface {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Oct 30 09:15:49 UTC 2023 - 3.1K bytes - Viewed (0)