Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,965 for Option (0.13 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

        String id();
    
        /**
         * Returns the name of the tool option for this path. For example, if this path type
         * is {@link JavaPathType#MODULES}, then this method returns {@code "--module-path"}.
         * The option does not include the {@linkplain JavaPathType.Modular#moduleName() module name}
         * on which it applies.
         *
         * @return the name of the tool option for this path type
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. schema/index.go

    					idx.Type = index.Type
    				}
    				if idx.Where == "" {
    					idx.Where = index.Where
    				}
    				if idx.Comment == "" {
    					idx.Comment = index.Comment
    				}
    				if idx.Option == "" {
    					idx.Option = index.Option
    				}
    
    				idx.Fields = append(idx.Fields, index.Fields...)
    				sort.Slice(idx.Fields, func(i, j int) bool {
    					return idx.Fields[i].priority < idx.Fields[j].priority
    				})
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKeyTest.kt

            )
        }
    
        @Test
        fun `cache key honours isolated projects option`() {
            assertThat(
                cacheKeyStringFromStartParameter {
                    isolatedProjects = Option.Value.value(true)
                },
                equalTo(cacheKeyStringFromStartParameter {
                    isolatedProjects = Option.Value.value(true)
                })
            )
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/cases.go

    	Compact Option = compact
    )
    
    // TODO: option to preserve a normal form, if applicable?
    
    type options struct {
    	noLower bool
    	simple  bool
    
    	// TODO: segmenter, max ignorable, alternative versions, etc.
    
    	ignoreFinalSigma bool
    }
    
    func getOpts(o ...Option) (res options) {
    	for _, f := range o {
    		res = f(res)
    	}
    	return
    }
    
    func noLower(o options) options {
    	o.noLower = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskConfigurer.java

                    String optionName = optionDescriptor.getName();
                    org.gradle.cli.CommandLineOption option = parser.option(optionName);
                    option.hasDescription(optionDescriptor.getDescription());
                    option.hasArgument(optionDescriptor.getArgumentType());
                }
                taskOptions.addMutualExclusions(parser);
    
                ParsedCommandLine parsed;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/BuildOptionSet.java

                    for (BuildOption<? super T> option : getAllOptions()) {
                        option.applyFromCommandLine(args, target);
                    }
                    return target;
                }
    
                @Override
                public void configure(CommandLineParser parser) {
                    for (BuildOption<? super T> option : getAllOptions()) {
                        option.configure(parser);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/fuzz_test.go

    		node := fuzz.Struct[*model.Proxy](fg)
    		selectionOpts := model.PolicyMatcherForProxy(node)
    		policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
    		option := fuzz.Struct[Option](fg)
    		b := New(bundle, push, policies, option)
    		if b == nil {
    			fg.T().Skip()
    			return // To help linter
    		}
    		b.BuildHTTP()
    	})
    }
    
    func FuzzBuildTCP(f *testing.F) {
    	fuzz.Fuzz(f, func(fg fuzz.Helper) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/BuildOption.java

    import javax.annotation.Nullable;
    import java.util.Map;
    
    /**
     * Represents an option for a build provided by the user via Gradle property and/or a command line option.
     *
     * @param <T> the type of object that ultimately expresses the option to consumers
     * @since 4.3
     */
    public interface BuildOption<T> extends Option {
    
        @Nullable
        String getProperty();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/AbstractReferenceShortenerTest.kt

                        this += ShortenStrategy.entries.associate { option ->
                            val shorteningsForOption = collectPossibleReferenceShorteningsInElement(
                                element,
                                shortenOptions = ShortenOptions.ALL_ENABLED,
                                classShortenStrategy = { option },
                                callableShortenStrategy = { option }
                            )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/BooleanBuildOption.java

    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    
    import java.util.Map;
    
    /**
     * A build option that takes a boolean value.
     * <p>
     * If a command line option is provided, this build option automatically creates a disabled option out-of-the-box e.g. {@code "--no-daemon"} for the provided option {@code "--daemon"}.
     *
     * @since 4.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top