Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 726 for Preferred (0.21 sec)

  1. api/openapi-spec/v3/apis__apiregistration.k8s.io_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": {
            "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

                        byConstraint()
                        byReason("didn't match version 2.0")
                    }
                }
            }
        }
    
        def "can combine required and preferred version in single dependency definition"() {
            repository {
                'org:foo' {
                    '1.0.0'()
                    '1.1.0'()
                    '1.2.0'()
                    '2.0.0'()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. hack/update-import-aliases.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script fixes imports programmatically according to
    # all the imports that we have our preferred alias(es).
    # Usage: `hack/update-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyStringNotationConverterTest.groovy

            d.name == 'bar'
            d.versionConstraint.requiredVersion == strict
            d.versionConstraint.strictVersion == strict
            d.versionConstraint.preferredVersion == preferred
    
            where:
            notation          | strict       | preferred
            '1.0!!'           | '1.0'        | ""
            '[1.0, 2.0]!!'    | '[1.0, 2.0]' | ""
            '[1.0, 2.0]!!1.5' | '[1.0, 2.0]' | '1.5'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. pkg/util/node/node.go

    func (e *NoMatchError) Error() string {
    	return fmt.Sprintf("no preferred addresses found; known addresses: %v", e.addresses)
    }
    
    // GetPreferredNodeAddress returns the address of the provided node, using the provided preference order.
    // If none of the preferred address types are found, an error is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

            }
            checker.sawVersion();
    
            boolean isStrict = !versionConstraint.getStrictVersion().isEmpty();
            String version;
            String preferred;
            if (resolvedVersion != null) {
                version = resolvedVersion;
                preferred = null;
            } else {
                version = isStrict
                    ? versionConstraint.getStrictVersion()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteDatabase.kt

     * used so that OkHttp can learn from its mistakes: if there was a failure attempting to connect to
     * a specific IP address or proxy server, that failure is remembered and alternate routes are
     * preferred.
     */
    class RouteDatabase {
      private val _failedRoutes = mutableSetOf<Route>()
    
      val failedRoutes: Set<Route>
        @Synchronized get() = _failedRoutes.toSet()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    // Dialer knows how to open a streaming connection to a server.
    type Dialer interface {
    
    	// Dial opens a streaming connection to a server using one of the protocols
    	// specified (in order of most preferred to least preferred).
    	Dial(protocols ...string) (Connection, string, error)
    }
    
    // UpgradeRoundTripper is a type of http.RoundTripper that is able to upgrade
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            }
        }
    
        /**
         * For all modules providing a capability, always use the preferred module, even if there's no conflict.
         * In other words, will forcefully upgrade all modules providing a capability to a selected module.
         *
         * @param to the preferred module
         */
        private
        fun ConfigurationContainer.forceUpgrade(to: String, version: String) = all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataJsonWriter.java

                }
                if (version.requires != null) {
                    write("requires", version.requires);
                }
                if (version.preferred != null) {
                    write("prefers", version.preferred);
                }
                if (!version.rejectedVersions.isEmpty()) {
                    writeArray("rejects", version.rejectedVersions);
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top