Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 9,162 for 3$ (0.22 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/reconfig_batch_op.mlir

      // CHECK-SAME: num_batch_threads = 3 : i64
      // CHECK-SAME: shared_name = "batch/"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 17:38:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. buildscripts/verify-healing.sh

    		d=$((d + 1))
    		args="$args http://127.0.0.1:$((start_port + 1))${WORK_DIR}/1/${d}/ http://127.0.0.1:$((start_port + 2))${WORK_DIR}/2/${d}/ http://127.0.0.1:$((start_port + 3))${WORK_DIR}/3/${d}/ "
    	done
    
    	"${MINIO[@]}" --address ":$((start_port + 1))" $args >"${WORK_DIR}/dist-minio-server1.log" 2>&1 &
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/crypto/sha1/sha1block.go

    	var w [16]uint32
    
    	h0, h1, h2, h3, h4 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4]
    	for len(p) >= chunk {
    		// Can interlace the computation of w with the
    		// rounds below if needed for speed.
    		for i := 0; i < 16; i++ {
    			j := i * 4
    			w[i] = uint32(p[j])<<24 | uint32(p[j+1])<<16 | uint32(p[j+2])<<8 | uint32(p[j+3])
    		}
    
    		a, b, c, d, e := h0, h1, h2, h3, h4
    
    		// Each of the four 20-iteration rounds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1beta1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 62.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

              successThreshold: 5
              tcpSocket:
                host: hostValue
                port: portValue
              terminationGracePeriodSeconds: 7
              timeoutSeconds: 3
            name: nameValue
            ports:
            - containerPort: 3
              hostIP: hostIPValue
              hostPort: 2
              name: nameValue
              protocol: protocolValue
            readinessProbe:
              exec:
                command:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/many_attribute_op.mlir

      // CHECK: "tfl.average_pool_2d"(%{{.*}}) <{filter_height = 3 : i32, filter_width = 6 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 3 : i32, stride_w = 1 : i32}> : (tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 824 bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/google/MultisetEntrySetTester.java

      @MultisetFeature.Require(ENTRIES_ARE_VIEWS)
      public void testEntryViewReflectsRemove() {
        initThreeCopies();
        assertEquals(3, getMultiset().count(e0()));
        Multiset.Entry<E> entry = Iterables.getOnlyElement(getMultiset().entrySet());
        assertEquals(3, entry.getCount());
        assertTrue(getMultiset().remove(e0()));
        assertEquals(2, entry.getCount());
        assertTrue(getMultiset().elementSet().remove(e0()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 9.6K bytes
    - Viewed (0)
  9. src/math/j1.go

    	4.12051854307378562225e+02, // 0x4079C0D4652EA590
    	3.87474538913960532227e+03, // 0x40AE457DA3A532CC
    	7.91447954031891731574e+03, // 0x40BEEA7AC32782DD
    }
    var p1S8 = [5]float64{
    	1.14207370375678408436e+02, // 0x405C8D458E656CAC
    	3.65093083420853463394e+03, // 0x40AC85DC964D274F
    	3.69562060269033463555e+04, // 0x40E20B8697C5BB7F
    	9.76027935934950801311e+04, // 0x40F7D42CB28F17BB
    	3.08042720627888811578e+04, // 0x40DE1511697A0B2D
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/proxy_config_test.go

    		pc       *v1beta1.ProxyConfig
    		expected *meshconfig.ProxyConfig
    	}{
    		{
    			name: "concurrency",
    			pc: &v1beta1.ProxyConfig{
    				Concurrency: &wrappers.Int32Value{Value: 3},
    			},
    			expected: &meshconfig.ProxyConfig{
    				Concurrency: &wrappers.Int32Value{Value: 3},
    			},
    		},
    		{
    			name: "environment variables",
    			pc: &v1beta1.ProxyConfig{
    				EnvironmentVariables: map[string]string{
    					"a": "b",
    					"c": "d",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top