Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,195 for greatest (0.17 sec)

  1. pkg/controller/deployment/util/deployment_util.go

    	if newRS.Annotations == nil {
    		newRS.Annotations = make(map[string]string)
    	}
    	oldRevision, ok := newRS.Annotations[RevisionAnnotation]
    	// The newRS's revision should be the greatest among all RSes. Usually, its revision number is newRevision (the max revision number
    	// of all old RSes + 1). However, it's possible that some of the old RSes are deleted after the newRS revision being updated, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc.go

    			start += si
    		}
    
    		// Recompute the max value of the running sum by looking
    		// across the boundary between the running sum and sums[i]
    		// and at the max sums[i], taking the greatest of those two
    		// and the max of the running sum.
    		most = max(most, end+si, mi)
    
    		// Merge in end by checking if this new summary is totally
    		// free. If it is, then we want to extend the running sum's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    If your Gradle build produces the same output as the Ant build, this will give you and others confidence in switching over and make it easier to implement the big changes that will provide the greatest benefits.
     3. Decide whether you have a multi-project build or not.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. src/html/template/escape_test.go

    			"dangerousURLStart2",
    			`<a href='  {{"javascript:alert(%22pwned%22)"}}'>`,
    			`<a href='  #ZgotmplZ'>`,
    		},
    		{
    			"nonHierURL",
    			`<a href={{"mailto:Muhammed \"The Greatest\" Ali <******@****.***>"}}>`,
    			`<a href=mailto:Muhammed%20%22The%20Greatest******@****.***%3e>`,
    		},
    		{
    			"urlPath",
    			`<a href='http://{{"javascript:80"}}/foo'>`,
    			`<a href='http://javascript:80/foo'>`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    If your Gradle build produces the same output as the Maven build, this will give you confidence in switching over and make it easier to implement the changes that will provide the greatest benefits.
    +
    This doesn't mean that you need to verify every artifact at every stage, although doing so can help you quickly identify the source of a problem.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. security/pkg/credentialfetcher/plugin/gce_test.go

    		expectedToken string
    		expectedCall  int
    		expectedErr   error
    	}{
    		"get VM credential": {
    			jwt:           thirdPartyJwt,
    			jwtPath:       fmt.Sprintf("/tmp/security-pkg-credentialfetcher-plugin-gcetest-%s", uuid.New().String()),
    			expectedToken: thirdPartyJwt,
    			expectedCall:  1,
    		},
    		"jwt path not set": {
    			jwt:          thirdPartyJwt,
    			expectedCall: 1,
    			expectedErr:  fmt.Errorf("jwtPath is unset"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 10.1K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    
    END OF TERMS AND CONDITIONS
    
    How to Apply These Terms to Your New Programs
    
    If you develop a new program, and you want it to be of the greatest
    possible use to the public, the best way to achieve this is to make it
    free software which everyone can redistribute and change under these terms.
    
    To do so, attach the following notices to the program. It is safest to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	// SupportedVersions lists the TLS versions supported by the client.
    	// For TLS versions less than 1.3, this is extrapolated from the max
    	// version advertised by the client, so values other than the greatest
    	// might be rejected if used.
    	SupportedVersions []uint16
    
    	// Conn is the underlying net.Conn for the connection. Do not read
    	// from, or write to, this connection; that will cause the TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // this value has no effect on scheduling.
      // As a result, when the number of eligible domains is less than minDomains,
      // scheduler won't schedule more than maxSkew Pods to those domains.
      // If value is nil, the constraint behaves as if MinDomains is equal to 1.
      // Valid values are integers greater than 0.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top