Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 996 for Preferred (0.21 sec)

  1. src/net/dnsclient.go

    			b += 0x20
    		}
    		if a != b {
    			return false
    		}
    	}
    	return true
    }
    
    // isDomainName checks if a string is a presentation-format domain name
    // (currently restricted to hostname-compatible "preferred name" LDH labels and
    // SRV-like "underscore labels"; see golang.org/issue/12421).
    //
    // isDomainName should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtraPropertiesExtension.java

     * Extra properties extension objects support Groovy property syntax. That is, a property can be read via {@code extension.«name»} and set via
     * {@code extension.«name» = "value"}. <b>Wherever possible, the Groovy property syntax should be preferred over the
     * {@link #get(String)} and {@link #set(String, Object)} methods.</b>
     *
     * <pre class='autoTested'>
     * project.ext {
     *   myprop = "a"
     * }
     * assert project.myprop == "a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:35:02 UTC 2017
    - 6.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

     * This may change in future versions.
     *
     * The use of term “evaluate” is a legacy constraint.
     * Project evaluation is synonymous with “project configuration” (the latter being the preferred term).
     *
     * @see ProjectEvaluationListener
     */
    public class LifecycleProjectEvaluator implements ProjectEvaluator {
        private final BuildOperationRunner buildOperationRunner;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CallHandshakeTest.kt

        val client = makeClient()
        makeRequest(client)
    
        // As of OkHttp 5 we now apply the ordering from the OkHttpClient, which defaults to MODERN_TLS
        // Clients might need a changed order, but can at least define a preferred order to override that default.
        val socketOrderedByDefaults =
          handshakeEnabledCipherSuites.sortedBy { ConnectionSpec.MODERN_TLS.cipherSuitesAsString!!.indexOf(it) }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    // limitations under the License.
    
    [[dataflow_action]]
    = Dataflow Actions
    
    NOTE: The dataflow actions support is an <<feature_lifecycle.adoc#feature_lifecycle,incubating>> feature and is subject to change.
    
    A preferred way of executing work in a Gradle build is using a task.
    However, some kinds of work do not fit tasks well, such as custom handling of the build failure.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-discovery/app/cmd.go

    		"Comma-separated list of cipher suites for istiod TLS server. "+
    			"If omitted, the default Go cipher suites will be used. \n"+
    			"Preferred values: "+strings.Join(secureTLSCipherNames(), ", ")+". \n"+
    			"Insecure values: "+strings.Join(insecureTLSCipherNames(), ", ")+".")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    		},
    		{
    			name: "no node matches preferred scheduling requirements in NodeAffinity of pod so all nodes' priority is zero",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Affinity: affinity1,
    				},
    			},
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

     * The schema can declare a subset of these values as preferred. Candidates whose value is not in that subset are rejected. If a single candidate remains after
     * disambiguating the requested attributes, this candidate is returned. Otherwise disambiguation continues with extra attributes.
     * </li>
     * <li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            then:
            toolchain.languageVersion == JavaVersion.VERSION_1_8
            toolchain.javaHome.toString() == systemSpecificAbsolutePath("/path/8.0.1.j9")
        }
    
        def "no preferred implementation if VENDOR_SPECIFIC is requested"() {
            given:
            def queryService = createQueryServiceWithInstallations(["8.0.2.j9", "8.0.1.hs"])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. docs/features/connections.md

    Addresses specify a webserver (like `github.com`) and all of the **static** configuration necessary to connect to that server: the port number, HTTPS settings, and preferred network protocols (like HTTP/2).
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top