Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for enter_0 (0.25 sec)

  1. pkg/scheduler/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem: SchedulerSubsystem,
    			Name:      "pod_scheduling_sli_duration_seconds",
    			Help:      "E2e latency for a pod being scheduled, from the time the pod enters the scheduling queue and might involve multiple scheduling attempts.",
    			// Start with 10ms with the last bucket being [~88m, Inf).
    			Buckets:        metrics.ExponentialBuckets(0.01, 2, 20),
    			StabilityLevel: metrics.BETA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

            this.session = session.withLocalRepository(localRepository)
                    .withRemoteRepositories(Collections.singletonList(remoteRepository));
            InternalSession.associate(rss, this.session);
            sessionScope.enter();
            sessionScope.seed(InternalMavenSession.class, InternalMavenSession.from(this.session));
        }
    
        private Project project(Artifact artifact) {
            return session.getService(ProjectBuilder.class)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

            }
    
            //
            // We enter the session scope right after the MavenSession creation and before any of the
            // AbstractLifecycleParticipant lookups
            // so that @SessionScoped components can be @Injected into AbstractLifecycleParticipants.
            //
            sessionScope.enter();
            MavenChainedWorkspaceReader chainedWorkspaceReader =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. callbacks/preload.go

    	}
    	for _, relations := range embeddedRelations.EmbeddedRelations {
    		names = append(names, embeddedValues(relations)...)
    	}
    	return names
    }
    
    // preloadEntryPoint enters layer by layer. It will call real preload if it finds the right entry point.
    // If the current relationship is embedded or joined, current query will be ignored.
    //
    //nolint:cyclop
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

            session.setAllProjects(session.getProjects());
            session.setSession(defaultSessionFactory.newSession(session));
    
            SessionScope sessionScope = getContainer().lookup(SessionScope.class);
            sessionScope.enter();
            sessionScope.seed(MavenSession.class, session);
            sessionScope.seed(Session.class, session.getSession());
            sessionScope.seed(InternalMavenSession.class, InternalMavenSession.from(session.getSession()));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

        absl::flat_hash_set<Operation*> last_writes = GetLastWrites(resource);
        stack_down_.back()[resource] = last_writes;
      }
      Enter();
    }
    
    void SideEffectAnalysisInfo::Lateral() {
      Exit();
      Enter();
    }
    
    void SideEffectAnalysisInfo::Up() {
      Exit();
      for (const auto& [resource, last_writes] : stack_up_.back()) {
        SetLastWrites(resource, last_writes);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. src/cmd/trace/gstate.go

    		gs.startCause.name = ""
    		gs.startCause.resource = 0
    		gs.startCause.stack = trace.NoStack
    	}
    	gs.executing = resource
    	gs.startRunningTime = ts
    }
    
    // syscallBegin indicates that the goroutine entered a syscall on a proc.
    func (gs *gState[R]) syscallBegin(ts trace.Time, resource R, stack trace.Stack) {
    	gs.syscall.time = ts
    	gs.syscall.stack = stack
    	gs.syscall.active = true
    	if gs.executing == R(noResource) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    	scannedStacks    uint64 // number of goroutines scanned by this P
    
    	// preempt is set to indicate that this P should be enter the
    	// scheduler ASAP (regardless of what G is running on it).
    	preempt bool
    
    	// gcStopTime is the nanotime timestamp that this P last entered _Pgcstop.
    	gcStopTime int64
    
    	// Padding is no longer needed. False sharing is now not a worry because p is large enough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. pkg/webhooks/validation/controller/controller.go

    	// If the webhook is later added a new reconciliation request will trigger it to update
    	if whc == nil {
    		scope.Infof("Skip patching webhook, not found")
    		return nil
    	}
    
    	scope.Debugf("Reconcile(enter)")
    	defer func() { scope.Debugf("Reconcile(exit)") }()
    
    	caBundle, err := util.LoadCABundle(c.o.CABundleWatcher)
    	if err != nil {
    		scope.Errorf("Failed to load CA bundle: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/runtime/debug/garbage.go

    // There may be a system-imposed maximum stack limit regardless
    // of the value provided to SetMaxStack.
    //
    // SetMaxStack is useful mainly for limiting the damage done by
    // goroutines that enter an infinite recursion. It only limits future
    // stack growth.
    func SetMaxStack(bytes int) int {
    	return setMaxStack(bytes)
    }
    
    // SetMaxThreads sets the maximum number of operating system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top