Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for VAL1 (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"has(self.val1) && has(self.val2)":                    2,
    				"!has(self.val1)":                                     2,
    				"self.val1.all(k, size(self.val1) > 0)":               11010044,
    				"self.val1.exists_one(k, self.val1 == [2])":           23592949,
    				"!self.val1.exists_one(k, size(self.val1) > 0)":       9437183,
    				"size(self.val1) == 2":                                4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"!self.val1.contains('gives')",
    				"self.val1.endsWith('👑')",
    				"!self.val1.endsWith('pawn')",
    				"self.val1.matches('^[^0-9]*$')",
    				"!self.val1.matches('^[0-9]*$')",
    				"type(self.val1) == string",
    				"size(self.val1) == 12",
    
    				// string functions (https://github.com/google/cel-go/blob/v0.9.0/ext/strings.go)
    				"self.val1.charAt(3) == 'k'",
    				"self.val1.indexOf('o') == 1",
    				"self.val1.indexOf('o', 2) == 2",
    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. src/reflect/swapper.go

    	return func(i, j int) {
    		if uint(i) >= uint(s.Len) || uint(j) >= uint(s.Len) {
    			panic("reflect: slice index out of range")
    		}
    		val1 := arrayAt(s.Data, i, size, "i < s.Len")
    		val2 := arrayAt(s.Data, j, size, "j < s.Len")
    		typedmemmove(typ, tmp, val1)
    		typedmemmove(typ, val1, val2)
    		typedmemmove(typ, val2, tmp)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/internal/reflectlite/swapper.go

    	return func(i, j int) {
    		if uint(i) >= uint(s.Len) || uint(j) >= uint(s.Len) {
    			panic("reflect: slice index out of range")
    		}
    		val1 := arrayAt(s.Data, i, size, "i < s.Len")
    		val2 := arrayAt(s.Data, j, size, "j < s.Len")
    		typedmemmove(typ, tmp, val1)
    		typedmemmove(typ, val1, val2)
    		typedmemmove(typ, val2, tmp)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_LE
    # define ASSERT_LE(val1, val2) GTEST_ASSERT_LE(val1, val2)
    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_LT
    # define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2)
    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_GE
    # define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2)
    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_GT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging_test.go

    					Text: EnvoyTextLogFormat + " %REQ_WITHOUT_QUERY(key1:val1)% REQ_WITHOUT_QUERY(key2:val1)% %METADATA(UPSTREAM_HOST:istio)% %METADATA(CLUSTER:istio)%",
    					Labels: &structpb.Struct{
    						Fields: map[string]*structpb.Value{
    							"key1": {Kind: &structpb.Value_StringValue{StringValue: "%METADATA(CLUSTER:istio)%"}},
    							"key2": {Kind: &structpb.Value_StringValue{StringValue: "%REQ_WITHOUT_QUERY(key1:val1)%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/decompose-hybrid-quantization.mlir

      // CHECK-DAG: %[[VAL1:.+]] = "tfl.pseudo_const"() <{value = dense<1> : tensor<16x1x1x8xi8>}>
      // CHECK-DAG: %[[VAL2:.+]] = "tfl.conv_2d"(%arg0, %[[VAL0]], %[[VAL1]]) <{dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, fused_activation_function = "NONE", padding = "SAME", stride_h = 1 : i32, stride_w = 1 : i32}>
      // CHECK: return %[[VAL2]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_test.go

    					LogFormat: &meshconfig.MeshConfig_ExtensionProvider_EnvoyFileAccessLogProvider_LogFormat_Text{
    						Text: "%REQ_WITHOUT_QUERY(key1:val1)% REQ_WITHOUT_QUERY(key2:val1)% %METADATA(UPSTREAM_HOST:istio)% %METADATA(CLUSTER:istio)%\n",
    					},
    				},
    			},
    		},
    	}
    
    	jsonFormattersProvider = &meshconfig.MeshConfig_ExtensionProvider{
    		Name: "envoy-json-formatters",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

                         "Uses TF Uniform Quantized ops"))};
    };
    
    // Check if given indices in `val1` has same number of elements as given
    // indices in `val2`.
    bool HasEqualElementSize(Value val1, Value val2, ArrayRef<int> val1_indices,
                             ArrayRef<int> val2_indices) {
      ShapedType val1_shape = mlir::cast<ShapedType>(val1.getType());
      ShapedType val2_shape = mlir::cast<ShapedType>(val2.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/reflect/deepequal.go

    			return false
    		}
    		if v1.UnsafePointer() == v2.UnsafePointer() {
    			return true
    		}
    		iter := v1.MapRange()
    		for iter.Next() {
    			val1 := iter.Value()
    			val2 := v2.MapIndex(iter.Key())
    			if !val1.IsValid() || !val2.IsValid() || !deepValueEqual(val1, val2, visited) {
    				return false
    			}
    		}
    		return true
    	case Func:
    		if v1.IsNil() && v2.IsNil() {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top