Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for pruned (0.13 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// The sweep will free the old allocBits and set allocBits to the
    	// gcmarkBits. The gcmarkBits are replaced with a fresh zeroed
    	// out memory.
    	allocBits  *gcBits
    	gcmarkBits *gcBits
    	pinnerBits *gcBits // bitmap for pinned objects; accessed atomically
    
    	// sweep generation:
    	// if sweepgen == h->sweepgen - 2, the span needs sweeping
    	// if sweepgen == h->sweepgen - 1, the span is currently being swept
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			// been stopped before pruneInitContainersBeforeStart is
    			// called.
    			count++
    			// keep the first init container for this name
    			if count == 1 {
    				continue
    			}
    			// prune all other init containers that match this container name
    			klog.V(4).InfoS("Removing init container", "containerName", status.Name, "containerID", status.ID.ID, "count", count)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

    """)
    
            and:
            doesNotHaveLegacyLegend()
            hasSecondaryVariantsLegend()
            hasIncubatingLegend()
        }
    
        def "custom artifact with classifier is printed"() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                }
    
                configurations.create("custom") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func shouldDelegateListOnNotReadyCache(opts storage.ListOptions) bool {
    	pred := opts.Predicate
    	noLabelSelector := pred.Label == nil || pred.Label.Empty()
    	noFieldSelector := pred.Field == nil || pred.Field.Empty()
    	hasLimit := pred.Limit > 0
    	return noLabelSelector && noFieldSelector && hasLimit
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

      }
    
      Predicate* MakeNotPredicate(Predicate* pred) {
        auto it = make_not_predicate_cache_.find(pred);
        if (it != make_not_predicate_cache_.end()) {
          return it->second;
        }
    
        Predicate* result = MakeNotPredicateImpl(pred);
    
        bool insert_successful =
            make_not_predicate_cache_.insert({pred, result}).second;
        (void)insert_successful;
        DCHECK(insert_successful);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers_test.go

    		stillWorking := false
    
    		// ignore held workers
    		w.lock.Lock()
    		for uid := range w.holds {
    			pausedWorkers[uid] = struct{}{}
    		}
    		w.lock.Unlock()
    
    		// check for at least one still working non-paused worker
    		w.w.podLock.Lock()
    		for uid, worker := range w.w.podSyncStatuses {
    			if _, ok := pausedWorkers[uid]; ok {
    				continue
    			}
    			if worker.working {
    				stillWorking = true
    				break
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    				} else {
    					addrType = k8s.HostnameAddressType
    				}
    				gs.Addresses = append(gs.Addresses, k8s.GatewayStatusAddress{
    					Value: addr,
    					Type:  &addrType,
    				})
    			}
    		}
    		// Prune listeners that have been removed
    		haveListeners := getListenerNames(obj)
    		listeners := make([]k8s.ListenerStatus, 0, len(gs.Listeners))
    		for _, l := range gs.Listeners {
    			if haveListeners.Contains(l.Name) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    For example:
    
     * The output produced by a given task is now grouped together, even when other tasks execute in parallel with it.
     * Task execution headers are printed with a "> Task" prefix.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    			n.Kind = "not-type"
    		}
    		needType = append(needType, n)
    	}
    	if nerrors > 0 {
    		// Check if compiling the preamble by itself causes any errors,
    		// because the messages we've printed out so far aren't helpful
    		// to users debugging preamble mistakes. See issue 8442.
    		preambleErrors := p.gccErrors([]byte(builtinProlog + f.Preamble))
    		if len(preambleErrors) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top