Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for sresource (0.29 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.Resource == nil {
    				m.Resource = &ResourceMetricSource{}
    			}
    			if err := m.Resource.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 5:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 162.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta2/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.Resource == nil {
    				m.Resource = &ResourceMetricSource{}
    			}
    			if err := m.Resource.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 5:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 163K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	for resource := range target.Limits {
    		if resource != v1.ResourceCPU && resource != v1.ResourceMemory && resource != v1.ResourceEphemeralStorage {
    			delete(target.Limits, resource)
    		}
    	}
    	for resource := range target.Requests {
    		if resource != v1.ResourceCPU && resource != v1.ResourceMemory && resource != v1.ResourceEphemeralStorage {
    			delete(target.Requests, resource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      DCOMMENT_OP(op, "Inferring shape for VarHandleOp");
    
      Value resource = op.getResource();
      if (!CanBeRefined(resource.getType())) return false;
    
      // Make sure there are only use cases from the `AssignVariableOp` and
      // `ReadVariableOp`. For other cases, we can skip to be conservative.
      for (auto& use : make_early_inc_range(resource.getUses())) {
        Operation* def = use.getOwner();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. pkg/apis/apps/validation/validation_test.go

    			StorageClassName: &storageClass,
    			Resources: api.VolumeResourceRequirements{
    				Requests: api.ResourceList{
    					api.ResourceStorage: resource.MustParse("1Gi"),
    				},
    			},
    		},
    	}
    	validPVCTemplateChangedSize := *validPVCTemplate.DeepCopy()
    	validPVCTemplateChangedSize.Spec.Resources.Requests[api.ResourceStorage] = resource.MustParse("2Gi")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    )
    
    // ResourceID represents a 16-bit resource identifier, traditionally created with the MAKEINTRESOURCE macro.
    type ResourceID uint16
    
    // ResourceIDOrString must be either a ResourceID, to specify a resource or resource type by ID,
    // or a string, to specify a resource or resource type by name.
    type ResourceIDOrString interface{}
    
    // Predefined resource names and types.
    var (
    	// Predefined names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller_test.go

    		Containers: []v1.Container{{
    			Resources: v1.ResourceRequirements{
    				Requests: allocatableResources(memory, cpu),
    			},
    		}},
    	}
    }
    
    func allocatableResources(memory, cpu string) v1.ResourceList {
    	return v1.ResourceList{
    		v1.ResourceMemory: resource.MustParse(memory),
    		v1.ResourceCPU:    resource.MustParse(cpu),
    		v1.ResourcePods:   resource.MustParse("100"),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.Resource == nil {
    				m.Resource = &v11.TypedLocalObjectReference{}
    			}
    			if err := m.Resource.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                           ResourceEffects::TPUExecute::get());
    
      // Conservatively mark resource handles as read and write, as without
      // analyzing TPUCompile, there is not sufficient information to determine
      // effects on resources. For the MLIR bridge, this op will never be
      // populated with resource handles and tf.TPUExecuteAndUpdateVariables is
      // used instead.
      for (Value value : getArgs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		Path:              "/api/v1/test",
    		Verb:              "test",
    		APIPrefix:         "api",
    		APIGroup:          apiGroup,
    		APIVersion:        "v1",
    		Namespace:         "",
    		Resource:          resource,
    		Subresource:       "",
    		Name:              "",
    		Parts:             []string{"test"},
    	}
    }
    
    func TestQualifiedResource(t *testing.T) {
    	podA := &example.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
Back to top