Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 733 for Option (0.12 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. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/Choice.java

    /**
     * Asks the user to select an option from a list of options. Allows the choice to be configured in various ways.
     *
     * @param <T> The type of the options of this choice.
     */
    public interface Choice<T> {
        /**
         * Specifies the option to present to the user as the default selection, and the option to use when not connected to a console.
         * Both of these values default to the first option.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.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. 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)
  5. .idea/misc.xml

      <component name="FrameworkDetectionExcludesConfiguration">
        <type id="web" />
      </component>
      <component name="NullableNotNullManager">
        <option name="myDefaultNullable" value="javax.annotation.Nullable" />
        <option name="myDefaultNotNull" value="javax.annotation.Nonnull" />
        <option name="myNullables">
          <value>
            <list size="16">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. .idea/codeStyles/codeStyleConfig.xml

    <component name="ProjectCodeStyleConfiguration">
      <state>
        <option name="USE_PER_PROJECT_SETTINGS" value="true" />
        <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
      </state>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:10:36 UTC 2024
    - 210 bytes
    - Viewed (0)
  7. platforms/core-runtime/build-configuration/src/main/java/org/gradle/buildconfiguration/tasks/UpdateDaemonJvm.java

        public abstract RegularFileProperty getPropertiesFile();
    
        /**
         * The version of the JVM required to run the Gradle Daemon.
         *
         * @since 8.8
         */
        @Input
        @Optional
        @Option(option = "jvm-version", description = "The version of the JVM required to run the Gradle Daemon.")
        @Incubating
        public abstract Property<JavaVersion> getJvmVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. 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)
  9. .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)
  10. 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)
Back to top