Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 996 for Preferred (0.29 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaProject.java

        /**
         * Returns the language level to use within the current project.
         * <p>
         * Note: To determine the project language level {@link IdeaModule#getJavaLanguageSettings()}
         * should be preferred.
         *
         * @return The language level to use within the current project.
         * @since 1.0-milestone-5
         */
        IdeaLanguageLevel getLanguageLevel();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/JavaResolutionConsistency.java

         * the compile classpath and the runtime classpath, the version from the
         * compile classpath is going to be used.
         *
         * Unless you have a good reason to, this option should be preferred to
         * {@link #useRuntimeClasspathVersions()} for different reasons:
         *
         * <ul>
         *     <li>As code is compiled first against the given dependencies,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValitdatePluginsTrait.groovy

                failure.assertThatCause(containsString("$problem.severity: $indentedMessage"))
            }
    
            // TODO (donat) do probably don't want to have this, as the explicit problem assertions are preferred
            def problems = collectedProblems
            assert problems.size() == messages.size()
            problems.any { problem ->
                messages.any { message ->
                    if (message.config) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Ascii.java

       * agreement between sender and recipient of data.
       *
       * @since 8.0
       */
      public static final byte LF = 10;
    
      /**
       * Alternate name for {@link #LF}. ({@code LF} is preferred.)
       *
       * @since 8.0
       */
      public static final byte NL = 10;
    
      /**
       * Vertical Tabulation ('\v'): A format effector which controls the movement of the printing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  5. pkg/kubelet/client/kubelet_client.go

    	// insecureSkipTLSVerifyTransport is the transport to use if the kube-apiserver wants to skip verifying the TLS certificate of the kubelet
    	insecureSkipTLSVerifyTransport http.RoundTripper
    	// preferredAddressTypes specifies the preferred order to use to find a node address
    	preferredAddressTypes []v1.NodeAddressType
    }
    
    // NewNodeConnectionInfoGetter creates a new NodeConnectionInfoGetter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/match.go

    // match as the preferred match.
    //
    // If pin is true and have and tag are a strong match, it will henceforth only
    // consider matches for this language. This corresponds to the idea that most
    // users have a strong preference for the first defined language. A user can
    // still prefer a second language over a dialect of the preferred language by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  7. build/dependencies.yaml

        - path: test/integration/scheduler_perf/config/templates/pod-with-preferred-pod-affinity.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/integration/scheduler_perf/config/templates/pod-with-preferred-pod-anti-affinity.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/integration/scheduler_perf/config/templates/pod-with-preferred-topology-spreading.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/storage/resource_encoding_config.go

    	}
    
    	resourceOverride, resourceExists := o.resources[resource]
    	if resourceExists {
    		return resourceOverride.ExternalResourceEncoding, nil
    	}
    
    	// return the most preferred external version for the group
    	return o.scheme.PrioritizedVersionsForGroup(resource.Group)[0], nil
    }
    
    func (o *DefaultResourceEncodingConfig) InMemoryEncodingFor(resource schema.GroupResource) (schema.GroupVersion, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 11 23:09:16 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

            then:
            details.hasResult()
            !details.matches.empty
            details.matches == [usage(preferred)] as Set
    
            details
    
            where: // not exhaustive, tests pathological cases
            consumer                | candidates                                     | preferred
            Usage.JAVA_API          | [Usage.JAVA_API, Usage.JAVA_RUNTIME]           | Usage.JAVA_API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/group.go

    	"k8s.io/apiserver/pkg/endpoints/handlers/negotiation"
    	"k8s.io/apiserver/pkg/endpoints/handlers/responsewriters"
    )
    
    // APIGroupHandler creates a webservice serving the supported versions, preferred version, and name
    // of a group. E.g., such a web service will be registered at /apis/extensions.
    type APIGroupHandler struct {
    	serializer runtime.NegotiatedSerializer
    	group      metav1.APIGroup
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 20:38:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top