Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for NewTest (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. 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)
  7. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    		if ret >= 1<<(31-7) {
    			return false
    		}
    		ret <<= 7
    		b := s.read(1)[0]
    
    		// ITU-T X.690, section 8.19.2:
    		// The subidentifier shall be encoded in the fewest possible octets,
    		// that is, the leading octet of the subidentifier shall not have the value 0x80.
    		if i == 0 && b == 0x80 {
    			return false
    		}
    
    		ret |= int(b & 0x7f)
    		if b&0x80 == 0 {
    			*out = ret
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. pkg/controller/daemon/update.go

    			if hash := pod.Labels[apps.DefaultDaemonSetUniqueLabelKey]; len(hash) > 0 {
    				liveHashes[hash] = true
    			}
    		}
    	}
    
    	// Clean up old history from smallest to highest revision (from oldest to newest)
    	sort.Sort(historiesByRevision(old))
    	for _, history := range old {
    		if toKill <= 0 {
    			break
    		}
    		if hash := history.Labels[apps.DefaultDaemonSetUniqueLabelKey]; liveHashes[hash] {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/Ints.java

        //     fgha[c]|[b]de -> fgha[b]|[c]de. Because these two blocks are the same size, we are done.
        // The Dolphin algorithm is attractive because it does the fewest array reads and writes: each
        // array slot is read and written exactly once. However, it can have very poor memory locality:
        // benchmarking shows it can take 7 times longer than the other two in some cases. The other two
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    Note that this is different from a forced version as described above, in that any other versions of this module would not be affected.
    This means that the 'newest' conflict resolution strategy would still select version `1.3` if this version was also pulled transitively.
    
    .Example: Blacklisting a version with a replacement
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top