Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for mean_t (0.17 sec)

  1. pkg/apis/core/types.go

    type PullPolicy string
    
    const (
    	// PullAlways means that kubelet always attempts to pull the latest image.  Container will fail If the pull fails.
    	PullAlways PullPolicy = "Always"
    	// PullNever means that kubelet never pulls an image, but only uses a local image.  Container will fail if the image isn't present
    	PullNever PullPolicy = "Never"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    type PullPolicy string
    
    const (
    	// PullAlways means that kubelet always attempts to pull the latest image. Container will fail If the pull fails.
    	PullAlways PullPolicy = "Always"
    	// PullNever means that kubelet never pulls an image, but only uses a local image. Container will fail if the image isn't present
    	PullNever PullPolicy = "Never"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      }
    };
    
    // Converts Mean op to HLO Reduce op.
    //
    //   %init = arith.constant dense<...> : tensor<T>
    //   %sum = "mhlo.reduce"(%inp, %init) ["mhlo.add"]
    //               {dimensions = ...}
    //   %divisor = arith.constant dense<...> : tensor<T>
    //   %mean = "mhlo.divide"(%sum, %divisor)
    class ConvertMeanOp
        : public GenericConvertReductionOp<ConvertMeanOp, TF::MeanOp, AddOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"setHostnameAsFQDN":             "If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. If a pod does not have FQDN, this has no...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).
      // In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname).
      // In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "key": {
                "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    	inflow      http2inflow  // guarded by cc.mu
    	bytesRemain int64        // -1 means unknown; owned by transportResponseBody.Read
    	readErr     error        // sticky read error; owned by transportResponseBody.Read
    
    	reqBody              io.ReadCloser
    	reqBodyContentLength int64         // -1 means unknown
    	reqBodyClosed        chan struct{} // guarded by cc.mu; non-nil on Close, closed when done
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: [[DUMMY:%.*]] = mhlo.constant dense<0.000000e+00> : tensor<0xf32>
      // CHECK: [[DUMMY_CAST:%.*]] = tensor.cast [[DUMMY]] : tensor<0xf32> to tensor<*xf32>
      // CHECK: return [[Y_CONVERT]], [[MEAN]], [[VARIANCE]], [[MEAN]], [[VARIANCE]], [[DUMMY_CAST]]
      func.return %0#0, %0#1, %0#2, %0#3, %0#4, %0#5 : tensor<8x8x8x8xbf16>, tensor<8xf32>, tensor<8xf32>, tensor<8xf32>, tensor<8xf32>, tensor<*xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

                      for the peerings generated by this BGPPeer resource.  Default value
                      "UseNodeIP" means to configure the node IP as the source address.  "None"
                      means not to configure a source address.
                    type: string
                  ttlSecurity:
                    description: TTLSecurity enables the generalized TTL security mechanism
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	rcvr := s.newValue1(ssa.OpIData, s.f.Config.Types.BytePtr, i)
    	return closure, rcvr
    }
    
    // etypesign returns the signed-ness of e, for integer/pointer etypes.
    // -1 means signed, +1 means unsigned, 0 means non-integer/non-pointer.
    func etypesign(e types.Kind) int8 {
    	switch e {
    	case types.TINT8, types.TINT16, types.TINT32, types.TINT64, types.TINT:
    		return -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top