Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 151 for pruned (0.84 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.Deployment.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      minReadySeconds: 5
      paused: true
      progressDeadlineSeconds: 9
      replicas: 1
      revisionHistoryLimit: 6
      selector:
        matchExpressions:
        - key: keyValue
          operator: operatorValue
          values:
          - valuesValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	if err != nil {
    		return containersByEvictUnit{}, err
    	}
    
    	evictUnits := make(containersByEvictUnit)
    	newestGCTime := time.Now().Add(-minAge)
    	for _, container := range containers {
    		// Prune out running containers.
    		if container.State == runtimeapi.ContainerState_CONTAINER_RUNNING {
    			continue
    		}
    
    		createdAt := time.Unix(0, container.CreatedAt)
    		if newestGCTime.Before(createdAt) {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                // For each module participating in the conflict, deselect the currently selection, and remove all outgoing edges from the version.
                // This will propagate through the graph and prune configurations that are no longer required.
                c.withParticipatingModules(resolveState.getDeselectVersionAction());
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. pkg/kubelet/container/runtime.go

    	ContainerStateExited State = "exited"
    	// ContainerStateUnknown encompasses all the states that we currently don't care about (like restarting, paused, dead).
    	ContainerStateUnknown State = "unknown"
    )
    
    // ContainerReasonStatusUnknown indicates a container the status of the container cannot be determined.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.Deployment.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      minReadySeconds: 5
      paused: true
      progressDeadlineSeconds: 9
      replicas: 1
      revisionHistoryLimit: 6
      selector:
        matchExpressions:
        - key: keyValue
          operator: operatorValue
          values:
          - valuesValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.Deployment.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      minReadySeconds: 5
      paused: true
      progressDeadlineSeconds: 9
      replicas: 1
      revisionHistoryLimit: 6
      rollbackTo:
        revision: 1
      selector:
        matchExpressions:
        - key: keyValue
          operator: operatorValue
          values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	// shift amount must be 0, encoded in "S" as 0 if omitted, or as 1 if present.
    	// a.ShiftMustBeZero is set true indicates the index shift amount must be 0.
    	// In GNU syntax, a #0 shift amount is printed if Amount is 1 but ShiftMustBeZero
    	// is true; #0 is not printed if Amount is 0 and ShiftMustBeZero is true.
    	// Both cases represent shift by 0 bit.
    	ShiftMustBeZero bool
    }
    
    func (MemExtend) isArg() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/memory_manager.go

    	numaNodes := sets.New[int]()
    	for _, block := range m.state.GetMemoryBlocks(string(pod.UID), container.Name) {
    		for _, nodeID := range block.NUMAAffinity {
    			// avoid nodes duplication when hugepages and memory blocks pinned to the same NUMA node
    			numaNodes.Insert(nodeID)
    		}
    	}
    
    	if numaNodes.Len() == 0 {
    		klog.V(5).InfoS("No allocation is available", "pod", klog.KObj(pod), "containerName", container.Name)
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // NDEBUG mode. In this case we need the statements to be executed, the regex is
    // ignored, and the macro must accept a streamed message even though the message
    // is never printed.
    # define GTEST_EXECUTE_STATEMENT_(statement, regex) \
      GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
      if (::testing::internal::AlwaysTrue()) { \
         GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
      } else \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/runtime/mpagealloc.go

    // npages in size and returns a base address for that region.
    //
    // It uses p.searchAddr to prune its search and assumes that no palloc chunks
    // below chunkIndex(p.searchAddr) contain any free memory at all.
    //
    // find also computes and returns a candidate p.searchAddr, which may or
    // may not prune more of the address space than p.searchAddr already does.
    // This candidate is always a valid p.searchAddr.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
Back to top