Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for TestTd (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"field":   "The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed.  Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\n\nExamples:\n  \"name\" - the field \"name\" on the current resource\n  \"items[0].name\" - the field \"name\"...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    	assert(shouldTest("// +build !windows", "linux", "arm"))
    	assertNot(shouldTest("// +build !windows", "windows", "amd64"))
    
    	// A file with no build tags will always be tested.
    	assert(shouldTest("// This is a test.", "os", "arch"))
    
    	// Build tags separated by a space are OR-ed together.
    	assertNot(shouldTest("// +build arm 386", "linux", "amd64"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string message = 2;
    
      // The field of the resource that has caused this error, as named by its JSON
      // serialization. May include dot and postfix notation for nested attributes.
      // Arrays are zero-indexed.  Fields may appear more than once in an array of
      // causes due to fields having multiple errors.
      // Optional.
      //
      // Examples:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string message = 2;
    
      // The field of the resource that has caused this error, as named by its JSON
      // serialization. May include dot and postfix notation for nested attributes.
      // Arrays are zero-indexed.  Fields may appear more than once in an array of
      // causes due to fields having multiple errors.
      // Optional.
      //
      // Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // Check that the conclusion made above (that iterating over the graph once in
      // post order gives a maximal clustering) holds.  Once the linear time
      // post-order scheme has been battle tested we can move this to happen only in
      // debug builds.
      VLOG(2) << "Checking idempotence";
      TF_ASSIGN_OR_RETURN(bool changed,
                          ForEachEdgeInPostOrder([&](Cluster* from, Cluster* to) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

       * elements without resizing. Note that this is not what {@link HashSet#HashSet(int)} does, but it
       * is what most users want and expect it to do.
       *
       * <p>This behavior can't be broadly guaranteed, but has been tested with OpenJDK 1.7 and 1.8.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty hash set with enough capacity to hold {@code expectedSize} elements
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    	// to work.cycles).
    	gcTriggerCycle
    )
    
    // test reports whether the trigger condition is satisfied, meaning
    // that the exit condition for the _GCoff phase has been met. The exit
    // condition should be tested when allocating.
    func (t gcTrigger) test() bool {
    	if !memstats.enablegc || panicking.Load() != 0 || gcphase != _GCoff {
    		return false
    	}
    	switch t.kind {
    	case gcTriggerHeap:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	return p.binaryExpr(nil, 0)
    }
    
    // Expression = UnaryExpr | Expression binary_op Expression .
    func (p *parser) binaryExpr(x Expr, prec int) Expr {
    	// don't trace binaryExpr - only leads to overly nested trace output
    
    	if x == nil {
    		x = p.unaryExpr()
    	}
    	for (p.tok == _Operator || p.tok == _Star) && p.prec > prec {
    		t := new(Operation)
    		t.pos = p.pos()
    		t.Op = p.op
    		tprec := p.prec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    	//	frame 5's panic starts running defers
    	//	frame 6, running d4, garbage collects
    	//	frame 6, running d2, garbage collects
    	//
    	// During the execution of d4, the panic stack is d4 -> d3, which
    	// is nested properly, and we'll treat frame 3 as resumable, because we
    	// can find d3. (And in fact frame 3 is resumable. If d4 recovers
    	// and frame 5 continues running, d3, d3 can recover and we'll
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    - CEL expressions and `additionalProperties` are now allowed to be used under nested quantifiers in CRD schemas ([#124381](https://github.com/kubernetes/kubernetes/pull/124381), [@alexzielenski](https://github.com/alexzielenski)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top