Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for leastOf (0.17 sec)

  1. pkg/proxy/nftables/proxier.go

    	return hashAndTruncate(name)
    }
    
    func isServiceChainName(chainString string) bool {
    	// The chains returned from servicePortChainNameBase and
    	// servicePortEndpointChainNameBase will always have at least one "/" in them.
    	// Since none of our "stock" chain names use slashes, we can distinguish them this
    	// way.
    	return strings.Contains(chainString, "/")
    }
    
    func isAffinitySetName(set string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    }
    
    // toolenv returns the environment to use when building commands in cmd.
    //
    // This is a function instead of a variable because the exact toolenv depends
    // on the GOOS and GOARCH, and (at least for now) those are modified in place
    // to switch between the host and target configurations when cross-compiling.
    func toolenv() []string {
    	var env []string
    	if !mustLinkExternal(goos, goarch, false) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    	t.Helper()
    	// if actions are less the below logic will panic
    	if num > len(actions) {
    		t.Fatalf("len of actions %v is unexpected. Expected to be at least %v", len(actions), num+1)
    	}
    
    	for i := 0; i < num; i++ {
    		relativePos := len(actions) - i - 1
    		assert.Equal(t, verb, actions[relativePos].GetVerb(), "Expected action -%d verb to be %s", i, verb)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			wantErr: `failed to rotate DEK uid="panda", useSeed=false, ` +
    				`errState=got unexpected nil transformer, errGen=failed to validate annotations: annotations: Invalid value: "panda": ` +
    				`should be a domain with at least two segments separated by dots, statusKeyIDHash="sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b", ` +
    				`encryptKeyIDHash="", stateKeyIDHash="", expirationTimestamp=` + (time.Time{}).Format(time.RFC3339),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    * If there are no explicit inclusions or exclusions, everything is included
    * If at least one inclusion is specified, only files and directories matching the patterns are included
    * Any exclusion pattern overrides any inclusions, so if a file or directory matches at least one exclusion pattern, it won't be included, regardless of the inclusion patterns
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			// with NotOlderThan semantic), the further requests (even specifying earlier resource
    			// version) will also return the result synchronized to at least ResourceVersion X.
    			// By parallelizing test cases we ensure that the order in which test cases are defined
    			// doesn't automatically preclude some scenarios from happening.
    			t.Parallel()
    
    			out := &example.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	// is non-overlapping.
    	omitVariant bool
    
    	// We have both pkg and pkgs as a convenience. Both may be set, in which
    	// case they will be combined. At least one must be set.
    	pkgs []string // Multiple packages to test
    	pkg  string   // A single package to test
    
    	testFlags []string // Additional flags accepted by this test
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Allowed values are "Never" and "IfNeeded".
      //
      // Never: the webhook will not be called more than once in a single admission evaluation.
      //
      // IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
      // if the object being admitted is modified by other admission plugins after the initial webhook call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    // scanWork units of scan work or the G is preempted. This is
    // best-effort, so it may perform less work if it fails to get a work
    // buffer. Otherwise, it will perform at least n units of work, but
    // may perform more because scanning is always done in whole object
    // increments. It returns the amount of scan work performed.
    //
    // The caller goroutine must be in a preemptible state (e.g.,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.  At least that's the idea.
    // There are various irregularities.  For example, the
    // "continued" status is 0xFFFF, distinguishing itself
    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top