Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,676 for Option (0.1 sec)

  1. .idea/kotlinc.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project version="4">
      <component name="KotlinCompilerSettings">
        <option name="additionalArguments" value="-version -Xallow-kotlin-package -Xskip-metadata-version-check" />
      </component>
      <component name="KotlinJpsPluginSettings">
        <option name="version" value="2.0.20-dev-4579" />
      </component>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri May 24 13:06:56 UTC 2024
    - 356 bytes
    - Viewed (0)
  2. src/net/dnsconfig_unix.go

    					// Linux (use-vc), FreeBSD (usevc) and OpenBSD (tcp) option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    					// "Sets RES_USEVC in _res.options.
    					//  This option forces the use of TCP for DNS resolutions."
    					// https://www.freebsd.org/cgi/man.cgi?query=resolv.conf&sektion=5&manpath=freebsd-release-ports
    					// https://man.openbsd.org/resolv.conf.5
    					conf.useTCP = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/writing-tasks/task-with-arguments/common/project-info/src/main/java/com/example/ProjectInfoTask.java

    package com.example;
    
    import org.gradle.api.DefaultTask;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.api.tasks.options.Option;
    import org.gradle.api.tasks.options.OptionValues;
    import java.util.EnumSet;
    import java.util.Collection;
    
    class ProjectInfoTask extends DefaultTask {
    
        enum Format {
            PLAIN, JSON
        }
    
        private Format format = Format.PLAIN;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/InternalOption.java

     * limitations under the License.
     */
    
    package org.gradle.internal.buildoption;
    
    /**
     * An internal Gradle option, that can be set using a system property.
     *
     * @param <T> The value of the option.
     */
    public interface InternalOption<T> extends Option {
        T getDefaultValue();
    
        String getSystemPropertyName();
    
        T convert(String value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 926 bytes
    - Viewed (0)
  5. pilot/pkg/networking/plugin/authz/authorization.go

    	option := builder.Option{
    		IsCustomBuilder: actionType == Custom,
    		UseFilterState:  useFilterState,
    		UseExtendedJwt:  proxy.SupportsEnvoyExtendedJwt(),
    	}
    	selectionOpts := model.PolicyMatcherForProxy(proxy).WithService(svc)
    	policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
    	b := builder.New(tdBundle, push, policies, option)
    	return &Builder{builder: b}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOptionTest.groovy

            testOption = new TestOption(GRADLE_PROPERTY, CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION, DESCRIPTION))
            def option = new CommandLineOption([LONG_OPTION])
            options << option
            parsedCommandLine = new ParsedCommandLine(options)
            parsedCommandLine.addOption(LONG_OPTION, option)
            testOption.applyFromCommandLine(parsedCommandLine, testSettings)
    
            then:
            testSettings.flag
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. buildscripts/checkdeps.sh

    	KNAME=$(uname -s)
    	ARCH=$(uname -m)
    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    ## Once OSX has the option, below function is good enough.
    ##
    ## readlink() {
    ##     return /bin/readlink -f "$1"
    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    	cd $(dirname $TARGET_FILE)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    			knownFormats: formats,
    			options:      options,
    		},
    	}
    }
    
    func (r *RatchetingSchemaValidator) Validate(new interface{}, options ...ValidationOption) *validate.Result {
    	sv := validate.NewSchemaValidator(r.schema, r.root, r.path, r.knownFormats, r.options...)
    	return sv.Validate(new)
    }
    
    func (r *RatchetingSchemaValidator) ValidateUpdate(new, old interface{}, options ...ValidationOption) *validate.Result {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/NonInteractiveUserInputHandlerTest.groovy

            expect:
            userInputHandler.selectOption('Select count', [1, 2, 3], 2) == 2
        }
    
        def "returns first option when no default"() {
            expect:
            userInputHandler.choice('Select count', [1, 2, 3])
                .ask() == 1
        }
    
        def "returns default option for choice"() {
            expect:
            userInputHandler.choice('Select count', [1, 2, 3])
                .defaultOption(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/finalizersWithFailure/tests-groovy/taskFinalizersWithFailureGroovy.out

    * What went wrong:
    Execution failed for task ':taskX'.
    > java.lang.RuntimeException (no error message)
    
    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 455 bytes
    - Viewed (0)
Back to top