Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 995 for happen (0.13 sec)

  1. pkg/test/framework/components/istio/kube.go

    				}, metav1.UpdateOptions{}); err != nil {
    					scopes.Framework.Errorf("failed updating namespace %s on cluster %s. This can happen when deploying "+
    						"multiple control planes. Error: %v", i.cfg.SystemNamespace, c.Name(), err)
    				}
    			} else {
    				scopes.Framework.Errorf("failed creating namespace %s on cluster %s. This can happen when deploying "+
    					"multiple control planes. Error: %v", i.cfg.SystemNamespace, c.Name(), err)
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. src/runtime/gc_test.go

    	// Let some periodic GCs happen. In a heavily loaded system,
    	// it's possible these will be delayed, so this is designed to
    	// succeed quickly if things are working, but to give it some
    	// slack if things are slow.
    	var numGCs uint32
    	const want = 2
    	for i := 0; i < 200 && numGCs < want; i++ {
    		time.Sleep(5 * time.Millisecond)
    
    		// Test that periodic GC actually happened.
    		runtime.ReadMemStats(&ms2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    	// Last filter must be router.
    	router := h.HttpFilters[len(h.HttpFilters)-1]
    	h.HttpFilters = append(pre, h.HttpFilters[:len(h.HttpFilters)-1]...)
    	h.HttpFilters = append(h.HttpFilters, post...)
    	h.HttpFilters = append(h.HttpFilters, router)
    
    	filters = append(filters, &listener.Filter{
    		Name:       wellknown.HTTPConnectionManager,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/runtime/mgcsweep.go

    		// sweeping here until the next mark phase.
    		//
    		// Overflow can happen here if gcPaceSweeper is called concurrently with
    		// sweeping (i.e. not during a STW, like it usually is) because this code
    		// is intentionally racy. A concurrent call to gcPaceSweeper can happen
    		// if a GC tuning parameter is modified and we read an older value of
    		// heapLive than what was used to set the basis.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

        private final Set<String> interceptedCallSiteNames = new HashSet<>();
    
        // There is no information about the type returned by the constructor invocation in the bytecode, so the
        // dynamic dispatch has to happen somewhere. Wrapping the dispatch logic into the CallInterceptor allows
        // to reuse the common MethodHandle decoration routine in maybeDecorateIndyCallSite instead of using a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. pkg/controller/cronjob/cronjob_controllerv2.go

    	for _, job := range js {
    		isFinished, finishedStatus := jm.getFinishedStatus(job)
    		if isFinished && finishedStatus == batchv1.JobComplete {
    			successfulJobs = append(successfulJobs, job)
    		} else if isFinished && finishedStatus == batchv1.JobFailed {
    			failedJobs = append(failedJobs, job)
    		}
    	}
    
    	if cj.Spec.SuccessfulJobsHistoryLimit != nil &&
    		jm.removeOldestJobs(ctx, cj,
    			successfulJobs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/garbagecollector.go

    	kubeClient clientset.Interface,
    	metadataClient metadata.Interface,
    	mapper meta.ResettableRESTMapper,
    	ignoredResources map[schema.GroupResource]struct{},
    	sharedInformers informerfactory.InformerFactory,
    	informersStarted <-chan struct{},
    ) (*GarbageCollector, error) {
    	graphBuilder := NewDependencyGraphBuilder(ctx, metadataClient, mapper, ignoredResources, sharedInformers, informersStarted)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContext.java

            addNoOpLogger("org.littleshoot.proxy.HttpRequestHandler");
            // We ignore logging from here because this is when the Groovy runtime is initialized.
            // This may happen in BuildOperationTrace, and then the logging from the plugin factory would go into the build operation trace again.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pkg/config/schema/gvr/resources.gen.go

    		return false
    	case WorkloadEntry_v1:
    		return false
    	case WorkloadGroup:
    		return false
    	case WorkloadGroup_v1beta1:
    		return false
    	case WorkloadGroup_v1:
    		return false
    	}
    	// shouldn't happen
    	return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

            private IsolatedParameters isolateParameters(InputFingerprinter inputFingerprinter) {
                ModelContainer<?> model = owner.getModel();
                if (!model.hasMutableState()) {
                    // This may happen when a task visits artifacts using a FileCollection instance created from a Configuration instance in a different project (not an artifact produced by a different project, these work fine)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top