Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for fallocate (0.15 sec)

  1. src/cmd/compile/internal/types2/unify.go

    func newUnifier(tparams []*TypeParam, targs []Type, enableInterfaceInference bool) *unifier {
    	assert(len(tparams) >= len(targs))
    	handles := make(map[*TypeParam]*Type, len(tparams))
    	// Allocate all handles up-front: in a correct program, all type parameters
    	// must be resolved and thus eventually will get a handle.
    	// Also, sharing of handles caused by unified type parameters is rare and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime.go

    	SandboxStatuses []*runtimeapi.PodSandboxStatus
    	// Timestamp at which container and pod statuses were recorded
    	TimeStamp time.Time
    }
    
    // ContainerResources represents the Resources allocated to the running container.
    type ContainerResources struct {
    	// CPU capacity reserved for the container
    	CPURequest *resource.Quantity
    	// CPU limit enforced on the container
    	CPULimit *resource.Quantity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle.go

    	}
    }
    
    // globalExpiryState is the per-node instance which manages all ILM expiry tasks.
    var globalExpiryState *expiryState
    
    // newExpiryState creates an expiryState with buffered channels allocated for
    // each ILM expiry task type.
    func newExpiryState(ctx context.Context, objAPI ObjectLayer, n int) *expiryState {
    	es := &expiryState{
    		ctx:    ctx,
    		objAPI: objAPI,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_test.go

    	}{
    		{
    			name:                      "egress tcp with auto allocated address",
    			services:                  services,
    			sidecar:                   sidecarConfig,
    			numListenersOnServicePort: 1,
    			useAutoAllocatedAddress:   true,
    		},
    		{
    			name:                      "egress tcp and port with auto allocated address",
    			services:                  services,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  5. pkg/features/kube_features.go

    	KubeletInUserNamespace featuregate.Feature = "KubeletInUserNamespace"
    
    	// owner: @moshe010
    	// alpha: v1.27
    	//
    	// Enable POD resources API to return resources allocated by Dynamic Resource Allocation
    	KubeletPodResourcesDynamicResources featuregate.Feature = "KubeletPodResourcesDynamicResources"
    
    	// owner: @moshe010
    	// alpha: v1.27
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    		Namespace: "",
    	}
    	testClusterDNSDomain := "TEST"
    	kl.dnsConfigurer = dns.NewConfigurer(recorder, nodeRef, nil, nil, testClusterDNSDomain, "")
    
    	// pod requiring adjustedResource can be successfully allocated because updatePluginResourcesFunc
    	// adjusts node.allocatableResource for this resource to a sufficient value.
    	fittingPodSpec := v1.PodSpec{NodeName: string(kl.nodeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Enabled use of pods with volumes and user namespaces. The feature gate...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. src/os/exec/exec.go

    		Dir:   c.Dir,
    		Files: childFiles,
    		Env:   env,
    		Sys:   c.SysProcAttr,
    	})
    	if err != nil {
    		return err
    	}
    	started = true
    
    	// Don't allocate the goroutineErr channel unless there are goroutines to start.
    	if len(c.goroutine) > 0 {
    		goroutineErr := make(chan error, 1)
    		c.goroutineErr = goroutineErr
    
    		type goroutineStatus struct {
    			running  int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (throwable != null) {
            return new Failure(throwable);
          }
        }
        boolean wasCancelled = future.isCancelled();
        // Don't allocate a CancellationException if it's not necessary
        if (!GENERATE_CANCELLATION_CAUSES & wasCancelled) {
          /*
           * requireNonNull is safe because we've initialized CAUSELESS_CANCELLED if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (throwable != null) {
            return new Failure(throwable);
          }
        }
        boolean wasCancelled = future.isCancelled();
        // Don't allocate a CancellationException if it's not necessary
        if (!GENERATE_CANCELLATION_CAUSES & wasCancelled) {
          /*
           * requireNonNull is safe because we've initialized CAUSELESS_CANCELLED if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top