Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 174 for 3$ (0.14 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    // CHECK:  %2 = "tf.Conv2D"
    // CHECK:  %3 = "tf.Transpose"(%arg1, %[[CONSTANT0]]) : (tensor<3x3x3x16xf32>, tensor<4xi32>) -> tensor<16x3x3x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string provider = 3;
    }
    
    message CNIAmbientConfig {
      // Controls whether ambient redirection is enabled
      google.protobuf.BoolValue enabled = 1;
    
      // The directory path containing the configuration files for Ambient. Defaults to /etc/ambient-config.
      string configDir = 3;
    
      // If enabled, and ambient is enabled, DNS redirection will be enabled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages.go

    		if uint32(len(d)) < 3+certLen {
    			return false
    		}
    		d = d[3+certLen:]
    		certsLen -= 3 + certLen
    		numCerts++
    	}
    
    	m.certificates = make([][]byte, numCerts)
    	d = data[7:]
    	for i := 0; i < numCerts; i++ {
    		certLen := uint32(d[0])<<16 | uint32(d[1])<<8 | uint32(d[2])
    		m.certificates[i] = d[3 : 3+certLen]
    		d = d[3+certLen:]
    	}
    
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

          $rhs, $adj_x, $adj_y, $bool_attr),
        (Arith_ConstantOp $s1)),
      (TFL_BatchMatMulOp $input, $rhs, $adj_x, $adj_y, $bool_attr),
      [(HasRankAtLeast<3> $input),
       (HasRank<3> $rhs),
       (HasRank<3> $initial_shape_change),
       (IsBroadcastDimEqualToOne $rhs),
       (IsBroadcastDimEqualToOne $input),
       (BroadcastDimsProductEqual<1> $input, $initial_shape_change),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    					delay: 200 * time.Millisecond,
    				},
    				{
    					delay: 100 * time.Millisecond,
    				},
    				{
    					delay: 100 * time.Millisecond,
    				},
    			},
    			finalDelay:       3 * time.Second,
    			wantRequestCount: 3,
    		},
    		{
    			name:        "three adds in one batch",
    			batchPeriod: 1 * time.Second,
    			adds: []podAdd{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. .teamcity/test-buckets.json

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    	// <statefulsetname>-<podindex>. For example, a pod in a StatefulSet named
    	// "web" with index number "3" would be named "web-3".
    	// The only allowed template.spec.restartPolicy value is "Always".
    	Template v1.PodTemplateSpec `json:"template" protobuf:"bytes,3,opt,name=template"`
    
    	// volumeClaimTemplates is a list of claims that pods are allowed to reference.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			wantInsufficientResources: []InsufficientResource{
    				{ResourceName: v1.ResourceCPU, Reason: getErrReason(v1.ResourceCPU), Requested: 3, Used: 8, Capacity: 10},
    			},
    		},
    		{
    			pod: newResourceInitPod(newResourcePod(framework.Resource{MilliCPU: 1, Memory: 1}), framework.Resource{MilliCPU: 3, Memory: 1}, framework.Resource{MilliCPU: 2, Memory: 1}),
    			nodeInfo: framework.NewNodeInfo(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            property.addAll(["3"])
            property.addAll(Providers.of(["4"]))
    
            expect:
            assertValueIs(["1", "2", "3", "4"])
        }
    
        def "empty collection is used as value when elements added after convention set"() {
            given:
            property.convention(["1", "2"])
            property.add("3")
    
            expect:
            assertValueIs(["3"])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_utils_test.go

    		{maxUnavailable: nil, replicaCount: 10, expectedMaxUnavailable: 1},
    		{maxUnavailable: ptr.To(intstr.FromInt32(3)), replicaCount: 10, expectedMaxUnavailable: 3},
    		{maxUnavailable: ptr.To(intstr.FromInt32(3)), replicaCount: 0, expectedMaxUnavailable: 3},
    		{maxUnavailable: ptr.To(intstr.FromInt32(0)), replicaCount: 0, expectedMaxUnavailable: 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
Back to top