Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 6,867 for Option (0.19 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/FileJavadocOptionFileOption.java

        public FileJavadocOptionFileOption(String option, File value) {
            super(option, value);
        }
    
        @Override
        public void write(JavadocOptionFileWriterContext writerContext) throws IOException {
            if (value != null) {
                writerContext.writeValueOption(option, value.getAbsolutePath());
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/listsCommonDynamicAvailableValues/build.gradle

    import org.gradle.api.tasks.options.Option
    import org.gradle.api.tasks.options.OptionValues
    
    subprojects{
        task hello(type: CustomTask)
    }
    
    class CustomTask extends DefaultTask {
        @TaskAction
        void doSomething() {
        }
    
        @Option(option = "stringValue", description = "Configures a string value in CustomTask.")
        public void setStringValue(String value) {
        }
    
        @OptionValues("stringValue")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 16:41:46 UTC 2018
    - 531 bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/GroupsJavadocOptionFileOption.java

    /**
     * A {@link org.gradle.external.javadoc.JavadocOptionFileOption} which represents the -groups command line
     * option.
     */
    public class GroupsJavadocOptionFileOption extends AbstractJavadocOptionFileOption<Map<String, List<String>>> {
        public GroupsJavadocOptionFileOption(String option, Map<String, List<String>> value) {
            super(option, value);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    // Other strategies are also viable, though:
    // Option 1) Return an empty string in case of error, but allow the user to
    //    specify explicitly which errors to ignore.
    // Option 2) Return the partially evaluated string if it is itself a valid
    //    string, otherwise return the empty string in case of error.
    // Option 3) Option 1 and 2.
    // Option 4) Always return an empty string for now and implement Option 1 as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. 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)
  6. src/internal/cpu/cpu_s390x_test.go

    }
    
    func TestS390XAgainstCPUInfo(t *testing.T) {
    	// mapping of linux feature strings to S390X fields
    	mapping := make(map[string]*bool)
    	for _, option := range Options {
    		mapping[option.Name] = option.Feature
    	}
    
    	// these must be true on the machines Go supports
    	mandatory := make(map[string]bool)
    	mandatory["zarch"] = false
    	mandatory["eimm"] = false
    	mandatory["ldisp"] = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  7. 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)
  8. internal/config/identity/openid/provider/keycloak.go

    	}
    	return User{}, fmt.Errorf("Unable to lookup %s - keycloak user lookup returned %v", userid, resp.Status)
    }
    
    // Option is a function type that accepts a pointer Target
    type Option func(*KeycloakProvider)
    
    // WithTransport provide custom transport
    func WithTransport(transport http.RoundTripper) Option {
    	return func(p *KeycloakProvider) {
    		p.client = http.Client{
    			Transport: transport,
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 29 01:27:09 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/LinksOfflineJavadocOptionFileOption.java

    import java.util.List;
    
    public class LinksOfflineJavadocOptionFileOption extends AbstractJavadocOptionFileOption<List<JavadocOfflineLink>> {
        public LinksOfflineJavadocOptionFileOption(String option, List<JavadocOfflineLink> value) {
            super(option, value);
        }
    
        @Override
        public void write(JavadocOptionFileWriterContext writerContext) throws IOException {
            if (value != null && !value.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/MultilineMultiValueJavadocOptionFileOption.java

    public class MultilineMultiValueJavadocOptionFileOption extends AbstractListJavadocOptionFileOption<List<List<String>>> {
        protected MultilineMultiValueJavadocOptionFileOption(String option, List<List<String>> value, String joinBy) {
            super(option, value, joinBy);
        }
    
        @Override
        public JavadocOptionFileOptionInternal<List<List<String>>> duplicate() {
            List<List<String>> copyValues = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top