Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 8,364 for Versions (0.76 sec)

  1. pkg/kubelet/cm/dra/plugin/plugin.go

    				callerName,
    				pluginName,
    			),
    		)
    	}
    
    	// Validate version
    	newPluginHighestVersion, err := utilversion.HighestSupportedVersion(versions)
    	if err != nil {
    		return nil, errors.New(
    			log(
    				"%s for DRA plugin %q failed. None of the versions specified %q are supported. err=%v",
    				callerName,
    				pluginName,
    				versions,
    				err,
    			),
    		)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_list_issue61415.txt

    # (HEAD for a repo without version tags) and the hash to which it refers,
    # so that changing the HEAD ref will invalidate the result.
    
    go list -json -m --versions -e vcs-test.golang.org/git/issue61415.git/nested@latest
    cp stdout no-nested.json
    stdout '"Err": "module vcs-test.golang.org/git/issue61415.git/nested: no matching versions for query \\"latest\\""'
    stdout '"URL":'  # randomly-chosen vcweb localhost URL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidCommunityPluginsSmokeTest.groovy

     * https://developer.android.com/studio/releases/gradle-plugin.html
     * https://androidstudio.googleblog.com/
     *
     * To run your tests against all AGP versions from agp-versions.properties, use higher version of java by setting -PtestJavaVersion=<version>
     * See {@link org.gradle.integtests.fixtures.versions.AndroidGradlePluginVersions#assumeCurrentJavaVersionIsSupportedBy() assumeCurrentJavaVersionIsSupportedBy} for more details
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/gover.go

    )
    
    // Compare returns -1, 0, or +1 depending on whether
    // x < y, x == y, or x > y, interpreted as toolchain versions.
    // The versions x and y must not begin with a "go" prefix: just "1.21" not "go1.21".
    // Malformed versions compare less than well-formed versions and equal to each other.
    // The language version "1.21" compares less than the release candidate and eventual releases "1.21rc1" and "1.21.0".
    func Compare(x, y string) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers.go

    	}
    	for _, v := range crd.Spec.Versions {
    		if version == v.Name {
    			return v.Schema, nil
    		}
    	}
    	return nil, fmt.Errorf("version %s not found in CustomResourceDefinition: %v", version, crd.Name)
    }
    
    // GetSubresourcesForVersion returns the subresources for given version or nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 27 10:54:44 UTC 2019
    - 9K bytes
    - Viewed (0)
  6. docs/bucket/replication/setup_2site_existing_replication.sh

    ./mc ls -r --versions sitea/bucket >/tmp/sitea.txt
    ./mc ls -r --versions siteb/bucket >/tmp/siteb.txt
    
    out=$(diff -qpruN /tmp/sitea.txt /tmp/siteb.txt)
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected no 'diff' after replication: $out"
    	exit 1
    fi
    
    ./mc mb sitea/bucket-version/
    ./mc mb siteb/bucket-version
    
    ./mc version enable sitea/bucket-version/
    ./mc version enable siteb/bucket-version/
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ControllerRevision) APILifecycleIntroduced() (major, minor int) {
    	return 1, 9
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1alpha1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *IPAddress) APILifecycleIntroduced() (major, minor int) {
    	return 1, 27
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/MultiVersionTestInterceptor.groovy

            final def version
    
            VersionExecution(def version) {
                this.version = version
            }
    
            @Override
            protected String getDisplayName() {
                return version.toString()
            }
    
            @Override
            String toString() {
                return getDisplayName()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/Conflict.java

    import java.util.List;
    
    public class Conflict {
        private final List<? extends ModuleVersionIdentifier> versions;
        private final String message;
    
        public <E> Conflict(List<? extends ModuleVersionIdentifier> versions, String message) {
            this.versions = versions;
            this.message = message;
        }
    
        public String getMessage() {
            return message;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top