Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,957 for Versions (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apidiscovery/v2/conversion.go

    }
    
    func autoConvertv2beta1APIGroupDiscoveryTov2APIGroupDiscovery(in *v2beta1.APIGroupDiscovery, out *v2.APIGroupDiscovery, s conversion.Scope) error {
    	out.ObjectMeta = in.ObjectMeta
    	out.Versions = *(*[]v2.APIVersionDiscovery)(unsafe.Pointer(&in.Versions))
    	return nil
    }
    
    // Convertv2beta1APIGroupDiscoveryTov2APIGroupDiscovery is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                            }
                        }
                    }
                    if (available) {
                        edge("org:foo:1.0","org:foo:1.1").byConflictResolution("between versions 1.1 and 1.0")
                    } else {
                        module("org:foo:1.0")
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller_test.go

    	env.expectPath(s, "/apis/stable.example.com/v1/coolbars")
    	env.expectPath(s, "/apis/stable.example.com/v1beta1/coolbars")
    	env.expectPath(s, "/apis/apiextensions.k8s.io/v1")
    
    	t.Log("Removing version v1beta1")
    	crd.Spec.Versions = crd.Spec.Versions[1:]
    	crd.Generation += 1
    	// Generation is updated before storage to etcd. Since we don't have that in the fake client, manually increase it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. cmd/data-scanner.go

    				}
    			}
    			// add this version back to remaining versions for
    			// subsequent lifecycle policy applications
    			objectInfos = append(objectInfos, obj)
    			continue
    		}
    
    		// NoncurrentDays not passed yet.
    		if time.Now().UTC().Before(lifecycle.ExpectedExpiryTime(obj.SuccessorModTime, event.NoncurrentDays)) {
    			// add this version back to remaining versions for
    			// subsequent lifecycle policy applications
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/coderepo_test.go

    			list, err := repo.Versions(ctx, tt.prefix)
    			if err != nil {
    				t.Fatalf("Versions(%q): %v", tt.prefix, err)
    			}
    			if !reflect.DeepEqual(list.List, tt.versions) {
    				t.Fatalf("Versions(%q):\nhave %v\nwant %v", tt.prefix, list, tt.versions)
    			}
    		})
    	}
    }
    
    var latestTests = []struct {
    	vcs     string
    	path    string
    	version string
    	err     string
    }{
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                    Set<ModuleVersionIdentifier> versions = versionList
                        .stream()
                        .map(original -> DefaultModuleVersionIdentifier.newId(moduleId, original))
                        .collect(Collectors.toSet());
                    Expiry expiry = cachePolicy.versionListExpiry(moduleId, versions, cachedModuleVersionList.getAge());
                    if (expiry.isMustCheck()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

         * from the versions published using the default configurations (compileClasspath, runtimeClasspath).
         * This can be the case if there are multiple compile classpath and one should be preferred for publication,
         * or when the component is not a Java library and we don't have a default.
         */
        def "can publish resolved versions from a different configuration (#config)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

        @Nullable
        public static Jvm getJdk(final JavaVersion version) {
            return Iterables.getFirst(getAvailableJdks(version), null);
        }
    
        /**
         * Returns a JDK for each of the given java versions, if available.
         */
        public static List<Jvm> getJdks(final String... versions) {
            List<JavaVersion> javaVersions = Arrays.stream(versions).map(JavaVersion::toVersion).collect(Collectors.toList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/modfile.go

    	}
    	return summary.deprecated, nil
    }
    
    func replacement(mod module.Version, replace map[module.Version]module.Version) (fromVersion string, to module.Version, ok bool) {
    	if r, ok := replace[mod]; ok {
    		return mod.Version, r, true
    	}
    	if r, ok := replace[module.Version{Path: mod.Path}]; ok {
    		return "", r, true
    	}
    	return "", module.Version{}, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  10. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

         *         of this version range and the specified version range if both version ranges have
         *         restrictions. Otherwise, the restrictions on the returned range will be empty.
         *         </p>
         *         <p>
         *         The recommended version of the returned version range will be the recommended version of
         *         this version range, provided that ranges falls within the intersected restrictions. If
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top