Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 7,856 for 3$ (0.06 sec)

  1. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationListenerManagerTest.groovy

                start("3", id2),
                finished("3", id1),
                finished("2", id1),
                finished("1", id1),
                finished("3", id2),
                finished("2", id2),
                finished("1", id2),
            ]
        }
    
        def "does not forward progress notifications outside of start and finish"() {
            given:
            manager.addListener(recordingListener("1"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_op_with_region.mlir

        // CHECK: %[[MAX:.*]] = stablehlo.maximum %[[ARG1]], %[[ARG2]] : tensor<!quant.uniform<i8:f32, 3.000000e-01:1>>
        // CHECK: stablehlo.return %[[MAX]] : tensor<!quant.uniform<i8:f32, 3.000000e-01:1>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 20:32:46 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/unicode/utf8/example_test.go

    	// l 1
    	// l 1
    	// o 1
    	// , 1
    	//   1
    	// 世 3
    	// 界 3
    }
    
    func ExampleDecodeRuneInString() {
    	str := "Hello, 世界"
    
    	for len(str) > 0 {
    		r, size := utf8.DecodeRuneInString(str)
    		fmt.Printf("%c %v\n", r, size)
    
    		str = str[size:]
    	}
    	// Output:
    	// H 1
    	// e 1
    	// l 1
    	// l 1
    	// o 1
    	// , 1
    	//   1
    	// 世 3
    	// 界 3
    }
    
    func ExampleEncodeRune() {
    	r := '世'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 05 21:29:18 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			Original: []byte(`
    mergingList:
      - name: 1
      - name: 3
    `),
    			TwoWay: []byte(`
    $setElementOrder/mergingList:
      - name: 3
      - name: 2
      - name: 1
    mergingList:
      - name: 3
        value: 3
      - name: 1
        value: 1
    `),
    			Modified: []byte(`
    mergingList:
      - name: 3
        value: 3
      - name: 1
        value: 1
    `),
    		},
    	},
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_status_updater_test.go

    		t.Errorf("UpdateStatefulSetStatus mutated the sets replicas %d", set.Status.Replicas)
    	}
    }
    
    func TestStatefulSetStatusUpdaterUpdatesObservedGeneration(t *testing.T) {
    	set := newStatefulSet(3)
    	status := apps.StatefulSetStatus{ObservedGeneration: 3, Replicas: 2}
    	fakeClient := &fake.Clientset{}
    	updater := NewRealStatefulSetStatusUpdater(fakeClient, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 15:37:10 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/fused_kernel_matcher.mlir

      %1 = "tf.BiasAdd"(%0, %arg0) {data_format = "NHWC"} : (tensor<*xf32>, tensor<128xf32>) -> tensor<*xf32>
      %2 = "tf.Relu"(%1) : (tensor<*xf32>) -> tensor<*xf32>
      %3 = "tf.Identity"(%2) : (tensor<*xf32>) -> tensor<*xf32>
      func.return %3 : tensor<*xf32>
    }
    
    // CHECK-LABEL: conv2DBiasAdd_relu6Activation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/misc/Base64Util.java

            final byte[] outData = new byte[num * 3 + lastBytes];
            for (int i = 0; i < num; i++) {
                decode(inData, i * 4, outData, i * 3);
            }
            switch (lastBytes) {
            case 1:
                decode1byte(inData, num * 4, outData, num * 3);
                break;
            case 2:
                decode2byte(inData, num * 4, outData, num * 3);
                break;
            default:
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_quantizable_spots_as_functions.mlir

      %2 = "tf.Relu6"(%1) {device = ""} : (tensor<*xf32>) -> tensor<*xf32>
    
    
      %3 = "tf.Conv2D"(%arg0, %arg1) {
        data_format = "NHWC", device = "", dilations = [1, 1, 1, 1], explicit_paddings = [],
        padding = "SAME", strides = [1, 1, 2, 1], use_cudnn_on_gpu = true
      } : (tensor<1x3x4x3xf32>, tensor<2x3x3x2xf32>) -> tensor<*xf32>
      %4 = "tf.BiasAdd"(%3, %cst) {data_format = "NHWC", device = ""} : (tensor<*xf32>, tensor<2xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

          %3 = "tf.A"() : () -> (tensor<f32>)
          "tf.Yield"(%3) : (tensor<f32>) -> ()
          }, {
          %3 = "tf.C"() : () -> (tensor<f32>)
          "tf.Yield"(%3) : (tensor<f32>) -> ()
         }) { is_stateless = true } : (tensor<i1>) -> (tensor<f32>)
        %2 = "tf.IfRegion"(%0) ({
          %3 = "tf.B"() : () -> (tensor<i32>)
          "tf.Yield"(%3) : (tensor<i32>) -> ()
          }, {
          %3 = "tf.D"() : () -> (tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      %1 = "mhlo.broadcast_in_dim"(%0) <{broadcast_dimensions = dense<> : tensor<0xi64>}> : (tensor<f32>) -> tensor<2xf32>
      %2 = mhlo.constant dense<3.40282347E+38> : tensor<f32>
      %3 = "mhlo.broadcast_in_dim"(%2) <{broadcast_dimensions = dense<> : tensor<0xi64>}> : (tensor<f32>) -> tensor<2xf32>
      %4 = mhlo.constant dense<3.000000e+00> : tensor<f32>
      %5 = "mhlo.broadcast_in_dim"(%4) <{broadcast_dimensions = dense<> : tensor<0xi64>}> : (tensor<f32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top