Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 93 for NewTest (0.31 sec)

  1. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      optional int32 numberUnavailable = 8;
    
      // 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.
      // +optional
      optional int32 collisionCount = 9;
    
      // Represents the latest available observations of a DaemonSet's current state.
      // +optional
      // +patchMergeKey=type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      optional int32 numberUnavailable = 8;
    
      // 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.
      // +optional
      optional int32 collisionCount = 9;
    
      // Represents the latest available observations of a DaemonSet's current state.
      // +optional
      // +patchMergeKey=type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // collisionCount is the count of hash collisions for the Deployment. The Deployment controller uses this
      // field as a collision avoidance mechanism when it needs to create the name for the
      // newest ReplicaSet.
      // +optional
      optional int32 collisionCount = 8;
    }
    
    // DeploymentStrategy describes how to replace existing pods with new ones.
    message DeploymentStrategy {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    	if err != nil {
    		klog.ErrorS(err, "Failed to list sandboxes for pod", "podUID", podUID)
    		return nil, err
    	}
    
    	if len(sandboxes) == 0 {
    		return nil, nil
    	}
    
    	// Sort with newest first.
    	sandboxIDs := make([]string, len(sandboxes))
    	sort.Sort(podSandboxByCreated(sandboxes))
    	for i, s := range sandboxes {
    		sandboxIDs[i] = s.Id
    	}
    
    	return sandboxIDs, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/ztunnelserver.go

    	c.mu.Lock()
    	defer c.mu.Unlock()
    	return len(c.connectionSet)
    }
    
    type ztunnelServer struct {
    	listener *net.UnixListener
    
    	// connections to pod delivered map
    	// add pod goes to newest connection
    	// delete pod goes to all connections
    	conns *connMgr
    	pods  PodNetnsCache
    }
    
    var _ ZtunnelServer = &ztunnelServer{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top