Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 176 for sresource (0.27 sec)

  1. pkg/apis/autoscaling/validation/validation_test.go

    								Selector: metricLabelSelector,
    							},
    							Target: autoscaling.MetricTarget{
    								Type:         autoscaling.ValueMetricType,
    								Value:        resource.NewMilliQuantity(300, resource.DecimalSI),
    								AverageValue: resource.NewMilliQuantity(300, resource.DecimalSI),
    							},
    						},
    					}},
    				},
    			},
    			msg: "may not set both a target value for metric and a per-pod target",
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK-SAME: (%[[ARG_0:.*]]: tensor<!tf_type.resource<tensor<32xf32>>>, %[[ARG_1:.*]]: tensor<!tf_type.resource<tensor<32xf32>>>, %[[ARG_2:.*]]: tensor<!tf_type.resource<tensor<32xf32>>>, %[[ARG_3:.*]]: tensor<!tf_type.resource<tensor<32xf32>>>, %[[ARG_4:.*]]: tensor<!tf_type.resource<tensor<32xf32>>>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    // splitSubresource checks if the given storage path is the path of a subresource and returns
    // the resource and subresource components.
    func splitSubresource(path string) (string, string, error) {
    	var resource, subresource string
    	switch parts := strings.Split(path, "/"); len(parts) {
    	case 2:
    		resource, subresource = parts[0], parts[1]
    	case 1:
    		resource = parts[0]
    	default:
    		// TODO: support deeper paths
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      %outputs = "tf.Const"() {value = dense<224> : tensor<2xi32>} : () -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// regular update using the same manager name.
    	// Note that the APIVersion field is not related to the Subresource field and
    	// it always corresponds to the version of the main resource.
    	Subresource string `json:"subresource,omitempty" protobuf:"bytes,8,opt,name=subresource"`
    }
    
    // ManagedFieldsOperationType is the type of operation which lead to a ManagedFieldsEntry being created.
    type ManagedFieldsOperationType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  6. pkg/kubelet/cm/devicemanager/manager_test.go

    	oneDevice := resource.NewQuantity(int64(1), resource.DecimalSI)
    	twoDevice := resource.NewQuantity(int64(2), resource.DecimalSI)
    	threeDevice := resource.NewQuantity(int64(3), resource.DecimalSI)
    	res1 := TestResource{
    		resourceName:     "domain1.com/resource1",
    		resourceQuantity: *resource.NewQuantity(int64(6), resource.DecimalSI),
    		devs: checkpoint.DevicesPerNUMA{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		resource := schema.GroupVersionResource{Group: crd.Spec.Group, Version: v.Name, Resource: crd.Status.AcceptedNames.Plural}
    		if len(resource.Resource) == 0 {
    			utilruntime.HandleError(fmt.Errorf("CustomResourceDefinition %s has unexpected empty status.acceptedNames.plural", crd.Name))
    			return nil, fmt.Errorf("the server could not properly serve the resource")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // resources supported in a specific group and version, and if the resource
    // is namespaced.
    message APIResourceList {
      // groupVersion is the group and version this APIResourceList is for.
      optional string groupVersion = 1;
    
      // resources contains the name of the resources and if they are namespaced.
      repeated APIResource resources = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // resources supported in a specific group and version, and if the resource
    // is namespaced.
    message APIResourceList {
      // groupVersion is the group and version this APIResourceList is for.
      optional string groupVersion = 1;
    
      // resources contains the name of the resources and if they are namespaced.
      // +listType=atomic
      repeated APIResource resources = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}
    
    	resourceACountGot, err := store.Count(resourceA)
    	if err != nil {
    		t.Fatalf("store.Count failed: %v", err)
    	}
    
    	// count for resourceA should not include the objects for resourceB
    	// even though resourceA is a prefix of resourceB.
    	if int64(resourceACountExpected) != resourceACountGot {
    		t.Fatalf("store.Count for resource %s: expected %d but got %d", resourceA, resourceACountExpected, resourceACountGot)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top