Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for val6 (0.04 sec)

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

    			expectCost: map[string]int64{
    				"int(self.val2) == self.val1":         6,
    				"double(self.val1) == self.val2":      6,
    				"bytes(self.val6) == self.val7":       6,
    				"string(self.val1) == self.val6":      6,
    				"string(self.val4) == '10.5'":         4,
    				"string(self.val7) == self.val6":      6,
    				"duration(self.val8) == self.val9":    6,
    				"timestamp(self.val10) == self.val11": 6,
    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

    				"double(self.val2) >= self.val4",
    				"double(self.val3) > self.val4",
    				"double(self.val3) >= self.val4",
    
    				"self.val1 < int(self.val4)",
    				"self.val2 == int(self.val4)",
    				"self.val3 > int(self.val4)",
    
    				"double(self.val1) < self.val5",
    				"double(self.val2) == self.val5",
    				"double(self.val3) > self.val5",
    
    				"self.val1 < int(self.val5)",
    				"self.val2 == int(self.val5)",
    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. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK-DAG: [[VAL5:%.+]] = "tf.ClipByValue"(%arg0, [[VAL2]], [[VAL1]])
      // CHECK-DAG: [[VAL6:%.+]] = "tf.Sub"([[VAL5]], [[VAL2]])
      // CHECK-DAG: [[VAL7:%.+]] = "tf.Mul"([[VAL6]], [[VAL0]])
      // CHECK-DAG: [[VAL8:%.+]] = "tf.AddV2"([[VAL7]], [[VAL4]])
      // CHECK-DAG: [[VAL9:%.+]] = "tf.Floor"([[VAL8]])
      // CHECK-DAG: [[VAL10:%.+]] = "tf.Mul"([[VAL9]], [[VAL3]])
      // CHECK-DAG: [[VAL11:%.+]] = "tf.AddV2"([[VAL10]], [[VAL2]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/decompose-hybrid-quantization.mlir

      // CHECK-DAG: %[[VAL2:.+]] = "tfl.dequantize"(%[[VAL0]])
      // CHECK-DAG: %[[VAL3:.+]] = "tfl.dequantize"(%[[VAL1]])
      // CHECK-DAG: %[[VAL4:.+]] = "tfl.conv_2d"(%arg0, %[[VAL2]], %[[VAL3]]) <{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 %[[VAL4]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/ListBuildOptionTest.groovy

    import spock.lang.Specification
    
    import static org.gradle.internal.buildoption.BuildOptionFixture.*
    
    class ListBuildOptionTest extends Specification {
    
        private static final List<String> SAMPLE_VALUES = ['val1', 'val2', 'val3']
    
        def testSettings = new TestSettings()
        def commandLineParser = new CommandLineParser()
    
        def "can apply from property"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. operator/pkg/tpath/tree_test.go

        list1:
        - i1: val1
          i2b: val2
        - i2: val2
    `,
    		},
    		{
    			desc:     "merge list 2",
    			baseYAML: testTreeYAML,
    			path:     "a.b.list1",
    			value: `
    i3:
      a: val3
    `,
    			want: `
    a:
      b:
        c: val1
        list1:
        - i1: val1
        - i2: val2
        - i3:
            a: val3
    `,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  7. security/tools/jwt/samples/gen-jwt.py

    """Python script generates a JWT signed with custom private key.
    
    Example:
    ./gen-jwt.py  --iss example-issuer --aud foo,bar --claims=email:******@****.***,dead:beef key.pem -listclaim key1 val2 val3 -listclaim key2 val3 val4
    """
    from __future__ import print_function
    import argparse
    import copy
    import time
    
    from jwcrypto import jwt, jwk
    
    
    def main(args):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_util_test.go

    		name       string
    		data       map[string]string
    		shouldFail bool
    	}{
    		{name: "test with data ok", data: map[string]string{"key0": "val0", "_key1": "val1", "key2": "val2"}},
    		{name: "test with data ok 2 ", data: map[string]string{"_key0_": "val0", "&key1": "val1", "key2": "val2"}},
    	}
    
    	for i, tc := range testCases {
    		t.Logf("test case: %s", tc.name)
    		specVolID := fmt.Sprintf("spec-volid-%d", i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. test/codegen/noextend.go

    	// ppc64x:-"MOVHZ\tR\\d+,\\sR\\d+"
    	val16[1] = uint16(sval16[*u16>>2])
    
    }
    
    func setnox(x8 int8, u8 *uint8, y8 *int8, z8 *uint8, x16 *int16, u16 *uint16, x32 *int32, u32 *uint32) {
    
    	// ppc64x:-"MOVBZ\tR\\d+,\\sR\\d+"
    	val16[0] = uint16(*u8)
    
    	// AND not needed due to size
    	// ppc64x:-"ANDCC"
    	sval16[1] = 255 & int16(x8+*y8)
    
    	// ppc64x:-"ANDCC"
    	val16[1] = 255 & uint16(*u8+*z8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue60460.go

    	SameRules(Rules[T]) bool
    }
    
    type testRules struct{}
    
    func newTestRules() Rules[int] {
    	return testRules{}
    }
    
    func (r testRules) Hash(val int) int {
    	return val % 16
    }
    
    func (r testRules) Equivalent(val1 int, val2 int) bool {
    	return val1 == val2
    }
    
    func (r testRules) SameRules(other Rules[int]) bool {
    	_, ok := other.(testRules)
    	return ok
    }
    
    type testRules2 struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top