Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for val6 (0.04 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      "tf.WhileRegion"() ({
        // CHECK: [[VAL3:%.+]] = mhlo.compare LT, [[VAL0]], [[VAL1]]
        %2 = "mhlo.compare"(%0, %1) {comparison_direction = #mhlo<comparison_direction LT>} : (tensor<i32>, tensor<i32>) -> tensor<i1>
        // CHECK: mhlo.return [[VAL3]]
        "tf.Yield"(%2) : (tensor<i1>) -> ()
      }, {
        // CHECK: [[VAL3:%.+]] = mhlo.add [[VAL0]], [[VAL1]]
        %2 = mhlo.add %0, %1 : tensor<i32>
        // CHECK: mhlo.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/mutation/common/val.go

    	"github.com/google/cel-go/common/types/traits"
    )
    
    // ObjectVal is the CEL Val for an object that is constructed via the object
    // construction syntax.
    type ObjectVal struct {
    	typeRef TypeRef
    	fields  map[string]ref.Val
    }
    
    // NewObjectVal creates an ObjectVal by its TypeRef and its fields.
    func NewObjectVal(typeRef TypeRef, fields map[string]ref.Val) *ObjectVal {
    	return &ObjectVal{
    		typeRef: typeRef,
    		fields:  fields,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 21:55:08 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/heap/heap_test.go

    }
    
    func compareInts(val1 interface{}, val2 interface{}) bool {
    	first := val1.(testHeapObject).val.(int)
    	second := val2.(testHeapObject).val.(int)
    	return first < second
    }
    
    // TestHeapBasic tests Heap invariant
    func TestHeapBasic(t *testing.T) {
    	h := New(testHeapObjectKeyFunc, compareInts)
    	const amount = 500
    	var i int
    
    	// empty queue
    	if item := h.Peek(); item != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. docs/site-replication/run-multi-site-oidc.sh

    	exit_1
    fi
    
    # "Test if most recent tag update is replicated"
    ./mc tag set minio2/newbucket "key=val1"
    if [ $? -ne 0 ]; then
    	echo "expecting tag set to be successful. exiting.."
    	exit_1
    fi
    
    sleep 10
    val=$(./mc tag list minio1/newbucket --json | jq -r .tagset | jq -r .key)
    if [ "${val}" != "val1" ]; then
    	echo "expected bucket tag to have replicated, exiting..."
    	exit_1
    fi
    # stop minio1 instance
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-ldap.sh

    	exit_1
    fi
    
    # "Test if most recent tag update is replicated"
    ./mc tag set minio2/newbucket "key=val1"
    if [ $? -ne 0 ]; then
    	echo "expecting tag set to be successful. exiting.."
    	exit_1
    fi
    
    sleep 10
    
    val=$(./mc tag list minio1/newbucket --json | jq -r .tagset | jq -r .key)
    if [ "${val}" != "val1" ]; then
    	echo "expected bucket tag to have replicated, exiting..."
    	exit_1
    fi
    # stop minio1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. docs/site-replication/run-multi-site-minio-idp.sh

    	exit_1
    fi
    
    # "Test if most recent tag update is replicated"
    ./mc tag set minio2/newbucket "key=val1"
    if [ $? -ne 0 ]; then
    	echo "expecting tag set to be successful. exiting.."
    	exit_1
    fi
    sleep 5
    
    val=$(./mc tag list minio1/newbucket --json | jq -r .tagset | jq -r .key)
    if [ "${val}" != "val1" ]; then
    	echo "expected bucket tag to have replicated, exiting..."
    	exit_1
    fi
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-gpu.mlir

    // CHECK:           %[[VAL_5:.*]] = "tfl.reshape"(%[[VAL_0]], %[[VAL_2]]) : (tensor<1xf32>, tensor<4xi32>) -> tensor<1x1x1x1xf32>
    // CHECK:           %[[VAL_6:.*]] = "tfl.reshape"(%[[VAL_1]], %[[VAL_2]]) : (tensor<1xf32>, tensor<4xi32>) -> tensor<1x1x1x1xf32>
    // CHECK:           %[[VAL_7:.*]] = "tfl.concatenation"(%[[VAL_5]], %[[VAL_6]]) <{axis = 3 : i32, fused_activation_function = "NONE"}> : (tensor<1x1x1x1xf32>, tensor<1x1x1x1xf32>) -> tensor<1x1x1x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if fn(s) {
    		s.Val1.Traverse(fn)
    		s.Val2.Traverse(fn)
    	}
    }
    
    func (s *Special2) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(s) {
    		return nil
    	}
    	val1 := s.Val1.Copy(fn, skip)
    	val2 := s.Val2.Copy(fn, skip)
    	if val1 == nil && val2 == nil {
    		return fn(s)
    	}
    	if val1 == nil {
    		val1 = s.Val1
    	}
    	if val2 == nil {
    		val2 = s.Val2
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. src/net/http/cgi/host_test.go

    		"env-SCRIPT_FILENAME": os.Args[0],
    		"env-HTTP_COOKIE":     "nom=NOM; yum=YUM",
    		"env-HTTP_X_FOO":      "val1, val2",
    	}
    	runCgiTest(t, h, "GET /myscript/bar?a=b HTTP/1.0\n"+
    		"Cookie: nom=NOM\n"+
    		"Cookie: yum=YUM\n"+
    		"X-Foo: val1\n"+
    		"X-Foo: val2\n"+
    		"Host: example.com\n\n",
    		expectedMap)
    }
    
    // Issue 16405: CGI+http.Transport differing uses of HTTP_PROXY.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pkg/apis/discovery/v1beta1/conversion_test.go

    				Topology: map[string]string{
    					"key1": "val1",
    				},
    			},
    			internal: discovery.Endpoint{
    				DeprecatedTopology: map[string]string{
    					"key1": "val1",
    				},
    			},
    		},
    		{
    			desc: "non empty topology map, with zone",
    			external: v1beta1.Endpoint{
    				Topology: map[string]string{
    					"key1":                   "val1",
    					corev1.LabelTopologyZone: "zone1",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top