Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 123 for UInt32 (0.31 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        auto shape_attr =
            DenseIntElementsAttr::get(output_int_type, output_ty.getShape());
    
        // use int32_t instead of int64_t if all elements are in the range of int32
        // because int64 is not supported in dynamic reshape in XLA
        bool elements_all_in_int32_range =
            std::all_of(output_ty.getShape().begin(), output_ty.getShape().end(),
                        IsWithinInt32Range);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

              IsI32F32UniformQuantizedPerAxisType(input_element_type))) {
          LLVM_DEBUG(llvm::dbgs() << "Uniform quantize op's input should be a "
                                     "float type or int32. Got: "
                                  << input_element_type << ".\n");
          return failure();
        }
    
        // Output type of `UniformQuantizeOp` is guaranteed to be a quantized
        // tensor with integer storage type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers_test.go

    	return v1.Volume{
    		Name:         name,
    		VolumeSource: volumeSource,
    	}
    }
    
    // newPod uses the name as the uid.  Make names unique for testing.
    func newPod(name string, priority int32, containers []v1.Container, volumes []v1.Volume) *v1.Pod {
    	return &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    			UID:  types.UID(name),
    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    	}
    	nodes := make([]*v1.Node, len(nodeList.Items))
    	return nodes, nil
    }
    
    func TestUpdateNewNodeStatus(t *testing.T) {
    	cases := []struct {
    		desc                string
    		nodeStatusMaxImages int32
    	}{
    		{
    			desc:                "5 image limit",
    			nodeStatusMaxImages: 5,
    		},
    		{
    			desc:                "no image limit",
    			nodeStatusMaxImages: -1,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    }
    
    // ServerHTTPStats holds all type of http operations performed to/from the server
    // including their average execution time.
    type ServerHTTPStats struct {
    	S3RequestsInQueue      int32              `json:"s3RequestsInQueue"`
    	S3RequestsIncoming     uint64             `json:"s3RequestsIncoming"`
    	CurrentS3Requests      ServerHTTPAPIStats `json:"currentS3Requests"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "code": {
                "description": "Suggested HTTP return code for this status, 0 if not set.",
                "format": "int32",
                "type": "integer"
              },
              "details": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    }
    
    func newNodeLifecycleControllerFromClient(
    	ctx context.Context,
    	kubeClient clientset.Interface,
    	evictionLimiterQPS float32,
    	secondaryEvictionLimiterQPS float32,
    	largeClusterThreshold int32,
    	unhealthyZoneThreshold float32,
    	nodeMonitorGracePeriod time.Duration,
    	nodeStartupGracePeriod time.Duration,
    	nodeMonitorPeriod time.Duration,
    ) (*nodeLifecycleController, error) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "code": {
                "description": "Suggested HTTP return code for this status, 0 if not set.",
                "format": "int32",
                "type": "integer"
              },
              "details": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "code": {
                "description": "Suggested HTTP return code for this status, 0 if not set.",
                "format": "int32",
                "type": "integer"
              },
              "details": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	}
    
    	var completions string
    	if obj.Spec.Completions != nil {
    		completions = fmt.Sprintf("%d/%d", obj.Status.Succeeded, *obj.Spec.Completions)
    	} else {
    		parallelism := int32(0)
    		if obj.Spec.Parallelism != nil {
    			parallelism = *obj.Spec.Parallelism
    		}
    		if parallelism > 1 {
    			completions = fmt.Sprintf("%d/1 of %d", obj.Status.Succeeded, parallelism)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top