Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for enter_0 (0.19 sec)

  1. src/runtime/mcache.go

    	c.tinyAllocs = 0
    	memstats.heapStats.release()
    
    	// Update heapLive and heapScan.
    	gcController.update(dHeapLive, scanAlloc)
    }
    
    // prepareForSweep flushes c if the system has entered a new sweep phase
    // since c was populated. This must happen between the sweep phase
    // starting and the first allocation from c.
    func (c *mcache) prepareForSweep() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

            val testFrameworkChoice = if (descriptor.testFrameworks.size > 1) """
    Select test framework:
      1: JUnit 4
      2: TestNG
      3: Spock
      4: JUnit Jupiter
    Enter selection (default: JUnit 4) [1..4]
    """ else ""
            val packageNameChoice = if (descriptor.supportsPackage()) "Source package (default: demo):\n" else ""
            val toolChain = when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. cni/pkg/repair/repaircontroller.go

    		return err
    	}
    	c.repairedPods[key] = pod.UID
    	log.Infof("pod repaired")
    	m.With(resultLabel.Value(resultSuccess)).Increment()
    	return nil
    }
    
    // redirectRunningPod dynamically enters the provided pod, that is already running, and programs it's networking configuration.
    func redirectRunningPod(pod *corev1.Pod, netns string) error {
    	pi := plugin.ExtractPodInfo(pod)
    	redirect, err := plugin.NewRedirect(pi)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. docs/ru/docs/tutorial/security/first-steps.md

    Но в нашем случае одно и то же приложение **FastAPI** будет работать с API и аутентификацией.
    
    Итак, рассмотрим его с этой упрощенной точки зрения:
    
    * Пользователь вводит на фронтенде `имя пользователя` и `пароль` и нажимает `Enter`.
    * Фронтенд (работающий в браузере пользователя) отправляет эти `имя пользователя` и `пароль` на определенный URL в нашем API (объявленный с помощью параметра `tokenUrl="token"`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 15.4K 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. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	// then kill that thread when we are done (or rather, let Go runtime kill the thread).
    	// Unfortunately, making a new thread breaks us out of the network namespace we entered previously, so we need to restore that as well
    	go func() {
    		chErr <- func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/security/first-steps.md

    Betrachten wir es also aus dieser vereinfachten Sicht:
    
    * Der Benutzer gibt den `username` und das `password` im Frontend ein und drückt `Enter`.
    * Das Frontend (das im Browser des Benutzers läuft) sendet diesen `username` und das `password` an eine bestimmte URL in unserer API (deklariert mit `tokenUrl="token"`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. 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)
Back to top