Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 88 for NewTest (0.28 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

        }
    
        @Test
        @Disabled
        void testResolveCorrectDependenciesWhenDifferentDependenciesOnNewest()
                throws ArtifactResolutionException, InvalidVersionSpecificationException {
            // TODO use newest conflict resolver
            ArtifactSpec a = createArtifactSpec("a", "1.0");
            ArtifactSpec b = a.addDependency("b", "1.0");
            ArtifactSpec c2 = b.addDependency("c", "2.0");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/managedfields_test.go

    				{Manager: "a", Operation: metav1.ManagedFieldsOperationApply, Time: nil},
    				{Manager: "a", Operation: metav1.ManagedFieldsOperationUpdate, Time: parseTimeOrPanic("2001-01-01T01:00:00Z")},
    			},
    		},
    		{
    			name: "newest last",
    			managedFields: []metav1.ManagedFieldsEntry{
    				{Manager: "c", Operation: metav1.ManagedFieldsOperationUpdate, Time: parseTimeOrPanic("2001-01-01T01:00:00Z")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/compute.go

    			canDoMinorUpgrade = minorUpgradePossibleWithPatchRelease(stableVersion, patchVersion)
    
    			// If the cluster version is lower than the newest patch version, we should inform about the possible upgrade
    			if patchUpgradePossible(clusterVersion, patchVersion) {
    
    				// The kubeadm version has to be upgraded to the latest patch version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

     *     cacheChangingModulesFor 0, 'seconds'
     *   }
     * }
     * </pre>
     *
     * @since 1.0-milestone-6
     */
    public interface ResolutionStrategy {
    
        /**
         * In case of conflict, Gradle by default uses the newest of conflicting versions.
         * However, you can change this behavior. Use this method to configure the resolution to fail eagerly on any version conflict, e.g.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
    	// uses this field as a collision avoidance mechanism when it needs to create the name for the
    	// newest ControllerRevision.
    	// +optional
    	CollisionCount *int32 `json:"collisionCount,omitempty" protobuf:"varint,9,opt,name=collisionCount"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    6. If several candidates still remain, Gradle will consider extra attributes again. A candidate can be chosen if it has the fewest number of extra attributes.
    
    If at any step no candidates remain compatible, resolution fails.
    Additionally, Gradle outputs a list of all compatible candidates from step 1 to help with debugging variant matching failures.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	// leadership even if their is another un-expired leader.
    	//
    	// This can be used to implemented a prioritized leader election. For example, if multiple
    	// versions of the same application run simultaneously, we can ensure the newest version
    	// will become the leader.
    	//
    	// It is the responsibility of the caller to ensure that all KeyComparison functions are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    		remountRequired:        false,
    		volumeMountStateForPod: operationexecutor.VolumeMountUncertain,
    	}
    
    	if mounter != nil {
    		// The mounter stored in the object may have old information,
    		// use the newest one.
    		podObj.mounter = mounter
    	}
    
    	asw.attachedVolumes[volumeName].mountedPods[podName] = podObj
    
    	podMap, ok := asw.foundDuringReconstruction[opts.VolumeName]
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/mvs/mvs_test.go

    name: noprev3
    A: B4 C2
    B3:
    B2.hidden:
    C2:
    build A:               A B4        C2
    downgrade A B2.hidden: A B2.hidden C2
    
    # Cycles involving the target.
    
    # The target must be the newest version of itself.
    name: cycle1
    A: B1
    B1: A1
    B2: A2
    B3: A3
    build A:      A B1
    upgrade A B2: A B2
    upgrade* A:   A B3
    
    # golang.org/issue/29773:
    # Requirements of older versions of the target
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"collisionCount":         "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
    	"conditions":             "Represents the latest available observations of a DaemonSet's current state.",
    }
    
    func (DaemonSetStatus) SwaggerDoc() map[string]string {
    	return map_DaemonSetStatus
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
Back to top