Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 176 for sresource (0.16 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        /**
         * List the contents of this SMB resource. The list returned by this
         * method will be;
         *
         * <ul>
         * <li>files and directories contained within this resource if the
         * resource is a normal disk file directory,
         * <li>all available NetBIOS workgroups or domains if this resource is
         * the top level URL <code>smb://</code>,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  2. pkg/apis/core/v1/defaults_test.go

    		if len(got.Resources.Limits) != len(expected.Resources.Limits) {
    			return fmt.Errorf("different number of resources.Limits: got <%v>, expected <%v>", len(got.Resources.Limits), (expected.Resources.Limits))
    		}
    
    		for k, v := range got.Resources.Limits {
    			if ev, found := expected.Resources.Limits[v1.ResourceName(k)]; !found {
    				return fmt.Errorf("failed to find resource <%v> in expected resources.Limits.", k)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// or currently their allocation is in-flight.
    		resources, err := newResourceModel(logger, pl.resourceSliceLister, pl.claimAssumeCache, &pl.inFlightAllocations)
    		logger.V(5).Info("Resource usage", "resources", klog.Format(resources))
    		if err != nil {
    			return nil, statusError(logger, err)
    		}
    		s.resources = resources
    	}
    
    	s.claims = claims
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    var (
    	podKind = v1.SchemeGroupVersion.WithKind("Pod")
    
    	podName       = "my-pod"
    	podUID        = "1234"
    	resourceName  = "my-resource"
    	resourceName2 = resourceName + "-2"
    	claimName     = podName + "-" + resourceName
    	claimName2    = podName + "-" + resourceName + "-2"
    	className     = "my-resource-class"
    	namespace     = "default"
    
    	resourceClass = &resourcev1alpha2.ResourceClass{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    		pvName          string
    		pvcSize         resource.Quantity
    		pvcStatusSize   resource.Quantity
    		oldPVSize       resource.Quantity
    		newPVSize       resource.Quantity
    	}{
    		{
    			name:          "expand-fs-volume",
    			volumeMode:    &fsMode,
    			pvName:        "pv",
    			pvcSize:       resource.MustParse("10G"),
    			pvcStatusSize: resource.MustParse("10G"),
    			newPVSize:     resource.MustParse("15G"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    			return 0, nil, time.Time{}, "", condition, fmt.Errorf("failed to get %s usage: %v", resourceName, err)
    		}
    		metricNameProposal = fmt.Sprintf("%s resource", resourceName.String())
    		status := autoscalingv2.MetricValueStatus{
    			AverageValue: resource.NewMilliQuantity(rawProposal, resource.DecimalSI),
    		}
    		return replicaCountProposal, &status, timestampProposal, metricNameProposal, autoscalingv2.HorizontalPodAutoscalerCondition{}, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. plugin/pkg/admission/limitranger/admission_test.go

    	attributesTest1 := admission.NewAttributesRecord(nil, nil, api.Kind("kind").WithVersion("version"), "test1", "name", api.Resource("resource").WithVersion("version"), "subresource", admission.Create, &metav1.CreateOptions{}, false, nil)
    
    	wg := sync.WaitGroup{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    				v1.ResourceMemory: *resource.NewQuantity(cInfo.desiredContainerResources.memoryRequest, resource.BinarySI),
    			}
    		case v1.ResourceCPU:
    			container.Resources.Limits = v1.ResourceList{
    				v1.ResourceCPU:    *resource.NewMilliQuantity(cInfo.desiredContainerResources.cpuLimit, resource.DecimalSI),
    				v1.ResourceMemory: *resource.NewQuantity(cInfo.currentContainerResources.memoryLimit, resource.BinarySI),
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/types.go

    	// Required.
    	APIVersions []string
    
    	// Resources is a list of resources this rule applies to.
    	//
    	// For example:
    	// 'pods' means pods.
    	// 'pods/log' means the log subresource of pods.
    	// '*' means all resources, but not subresources.
    	// 'pods/*' means all subresources of pods.
    	// '*/scale' means all scale subresources.
    	// '*/*' means all resources and their subresources.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // APIVersions is the API versions the resources belong to. '*' is all versions.
      // If '*' is present, the length of the slice must be one.
      // Required.
      // +listType=atomic
      repeated string apiVersions = 2;
    
      // Resources is a list of resources this rule applies to.
      //
      // For example:
      // 'pods' means pods.
      // 'pods/log' means the log subresource of pods.
      // '*' means all resources, but not subresources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top