Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 165 for xoring (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	padDuration time.Duration
    	// When true indicates that only half the specified number of
    	// threads should run during the first half of the evaluation
    	// period
    	split bool
    	// initialSeats is the number of seats this request occupies in the first phase of execution
    	initialSeats uint64
    	// finalSeats is the number occupied during the second phase of execution
    	finalSeats uint64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	NegotiatedProtocol string
    
    	// NegotiatedProtocolIsMutual used to indicate a mutual NPN negotiation.
    	//
    	// Deprecated: this value is always true.
    	NegotiatedProtocolIsMutual bool
    
    	// ServerName is the value of the Server Name Indication extension sent by
    	// the client. It's available both on the server and on the client side.
    	ServerName string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. src/runtime/map.go

    	// Each bucket (including its overflow buckets, if any) will have either all or none of its
    	// entries in the evacuated* states (except during the evacuate() method, which only happens
    	// during map writes and thus no one else can observe the map during that time).
    	emptyRest      = 0 // this cell is empty, and there are no more non-empty cells at higher indexes or overflows.
    	emptyOne       = 1 // this cell is empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Defaults to unset
      // +optional
      optional string resourceVersion = 1;
    }
    
    // GroupKind specifies a Group and a Kind, but does not force a version.  This is useful for identifying
    // concepts during lookup stages without having partially valid types
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message GroupKind {
      optional string group = 1;
    
      optional string kind = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Defaults to unset
      // +optional
      optional string resourceVersion = 1;
    }
    
    // GroupKind specifies a Group and a Kind, but does not force a version.  This is useful for identifying
    // concepts during lookup stages without having partially valid types
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message GroupKind {
      optional string group = 1;
    
      optional string kind = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    func (a seqCounter) succeeds(b seqCounter) bool {
    	return a.gen == b.gen && a.seq == b.seq+1
    }
    
    // String returns a debug string representation of the seqCounter.
    func (c seqCounter) String() string {
    	return fmt.Sprintf("%d (gen=%d)", c.seq, c.gen)
    }
    
    func dumpOrdering(order *ordering) string {
    	var sb strings.Builder
    	for id, state := range order.gStates {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    )
    
    var supportedValidationReason = sets.NewString(
    	string(apiextensions.FieldValueRequired),
    	string(apiextensions.FieldValueForbidden),
    	string(apiextensions.FieldValueInvalid),
    	string(apiextensions.FieldValueDuplicate),
    )
    
    // ValidateCustomResourceDefinition statically validates
    // context is passed for supporting context cancellation during cel validation when validating defaults
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Fix a race condition in transforming informer happening when objects were accessed during Resync operation ([#124344](https://github.com/kubernetes/kubernetes/pull/124344), [@wojtek-t]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	}
    
    	execCmd := work.FindExecCmd()
    	testlogArg := []string{}
    	if !r.c.disableCache && len(execCmd) == 0 {
    		testlogArg = []string{"-test.testlogfile=" + a.Objdir + "testlog.txt"}
    	}
    	panicArg := "-test.paniconexit0"
    	fuzzArg := []string{}
    	if testFuzz != "" {
    		fuzzCacheDir := filepath.Join(cache.Default().FuzzDir(), a.Package.ImportPath)
    		fuzzArg = []string{"-test.fuzzcachedir=" + fuzzCacheDir}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. cmd/erasure-healing_test.go

    		Recursive: false,
    		Immediate: false,
    	})
    	if err != nil {
    		t.Errorf("Failure during deleting part.1 - %v", err)
    	}
    
    	err = firstDisk.WriteAll(context.Background(), bucket, pathJoin(object, fi.DataDir, "part.1"), []byte{})
    	if err != nil {
    		t.Errorf("Failure during creating part.1 - %v", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top