Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for cont (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    //   <value result output>:<value in output tensor>,
    // so for tf.Const -> tensor<10x20xf32>, [0,2,18] would point to a unique output
    // scalar value).
    struct ValuePort {
      PointerUnion<Operation*, BlockArgument> producer;
      SmallVector<unsigned int, 2> port;
    
      bool operator==(const ValuePort& other) const {
        return producer == other.producer && port == other.port;
      }
    
      ValuePort() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    							t.Errorf("expected cost to be %d, but got %d", tt.expectedCost, tt.costBudget-remainingBudget)
    						}
    						return
    					}
    					if tt.expectSkipped {
    						// Skipped validations should have no cost. The only possible false positive here would be the CEL expression 'true'.
    						if remainingBudget != tt.costBudget {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    constant, even if the literal's fractional part is zero.
    </p>
    
    <pre>
    const Pi float64 = 3.14159265358979323846
    const zero = 0.0         // untyped floating-point constant
    const (
    	size int64 = 1024
    	eof        = -1  // untyped integer constant
    )
    const a, b, c = 3, 4, "foo"  // a = 3, b = 4, c = "foo", untyped integer and string constants
    const u, v float32 = 0, 3    // u = 0.0, v = 3.0
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-gc-stress.test

    String id=4
    	data="GC (idle)"
    String id=5
    	data="unspecified"
    String id=6
    	data="forever"
    String id=7
    	data="network"
    String id=8
    	data="select"
    String id=9
    	data="sync.(*Cond).Wait"
    String id=10
    	data="sync"
    String id=11
    	data="chan send"
    String id=12
    	data="chan receive"
    String id=13
    	data="GC mark assist wait for work"
    String id=14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
Back to top