Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for NewTest (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    NOTE: One notable difference between the two tools is in how they manage version conflicts. Maven uses a "closest" match algorithm, whereas Gradle picks the newest.
    Don't worry though, you have a lot of control over which versions are selected, as documented in <<dependency_constraints.adoc#dependency-constraints,Managing Transitive Dependencies>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  7. pkg/controller/deployment/sync.go

    	// If there is only one active replica set then we should scale that up to the full count of the
    	// deployment. If there is no active replica set, then we should scale up the newest replica set.
    	if activeOrLatest := deploymentutil.FindActiveOrLatest(newRS, oldRSs); activeOrLatest != nil {
    		if *(activeOrLatest.Spec.Replicas) == *(deployment.Spec.Replicas) {
    			return nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// deprecationWarning overrides the default warning returned to API clients.
    	// May only be set when `deprecated` is true.
    	// The default warning indicates this version is deprecated and recommends use
    	// of the newest served version of equal or greater stability, if one exists.
    	DeprecationWarning *string
    	// Schema describes the schema for CustomResource used in validation, pruning, and defaulting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/extensions/v1beta1/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
    - 45.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/inline.go

    	fmt.Fprintf(buf, "<code>%s</code>", htmlEscaper.Replace(x.Text))
    }
    
    func (x *Code) printMarkdown(buf *bytes.Buffer) {
    	if len(x.Text) == 0 {
    		return
    	}
    	// Use the fewest backticks we can, and add spaces as needed.
    	ticks := strings.Repeat("`", longestSequence(x.Text, '`')+1)
    	buf.WriteString(ticks)
    	if x.Text[0] == '`' {
    		buf.WriteByte(' ')
    	}
    	buf.WriteString(x.Text)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top