Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for NewTest (0.22 sec)

  1. src/cmd/trace/pprof.go

    		delete(m.stacks, existing)
    	} else {
    		// Not in the map.
    		rec = new(traceviewer.ProfileRecord)
    	}
    	// Insert regardless of whether we have a match in m.pcs.
    	// Even if we have a match, we want to keep the newest version
    	// of that stack, since we're much more likely tos see it again
    	// as we iterate through the trace linearly. Simultaneously, we
    	// are likely to never see the old stack again.
    	m.pcs[pcs] = stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers.go

    func (b containersByID) Len() int           { return len(b) }
    func (b containersByID) Swap(i, j int)      { b[i], b[j] = b[j], b[i] }
    func (b containersByID) Less(i, j int) bool { return b[i].ID.ID < b[j].ID.ID }
    
    // Newest first.
    type podSandboxByCreated []*runtimeapi.PodSandbox
    
    func (p podSandboxByCreated) Len() int           { return len(p) }
    func (p podSandboxByCreated) Swap(i, j int)      { p[i], p[j] = p[j], p[i] }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/initorder.go

    			}
    		}
    		fmt.Println()
    
    		fmt.Println("Processing nodes:")
    	}
    
    	// Determine initialization order by removing the highest priority node
    	// (the one with the fewest dependencies) and its edges from the graph,
    	// repeatedly, until there are no nodes left.
    	// In a valid Go program, those nodes always have zero dependencies (after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/go/types/initorder.go

    			}
    		}
    		fmt.Println()
    
    		fmt.Println("Processing nodes:")
    	}
    
    	// Determine initialization order by removing the highest priority node
    	// (the one with the fewest dependencies) and its edges from the graph,
    	// repeatedly, until there are no nodes left.
    	// In a valid Go program, those nodes always have zero dependencies (after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1/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
    - 34.5K bytes
    - Viewed (0)
  7. pkg/apis/apps/types.go

    	UpdateRevision string
    
    	// 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
    
    	// Represents the latest available observations of a statefulset's current state.
    	Conditions []StatefulSetCondition
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/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: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. pkg/controller/deployment/util/deployment_util.go

    	// NewRSAvailableReason is added in a deployment when its newest replica set is made available
    	// ie. the number of new pods that have passed readiness checks and run for at least minReadySeconds
    	// is at least the minimum available pods that need to run for the deployment.
    	NewRSAvailableReason = "NewReplicaSetAvailable"
    	// TimedOutReason is added in a deployment when its newest replica set fails to show any progress
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"collisionCount":      "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.",
    }
    
    func (DeploymentStatus) SwaggerDoc() map[string]string {
    	return map_DeploymentStatus
    }
    
    var map_DeploymentStrategy = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top