Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 133 for enter_1 (0.17 sec)

  1. pkg/kubelet/cm/dra/claiminfo.go

    }
    
    // hasPodReference checks if there is at least one claim
    // that is referenced by the pod with the given UID
    // This function is used indirectly by the status manager
    // to check if pod can enter termination status
    func (cache *claimInfoCache) hasPodReference(UID types.UID) bool {
    	for _, claimInfo := range cache.claimInfo {
    		if claimInfo.hasPodReference(UID) {
    			return true
    		}
    	}
    	return false
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    == Step 1. Viewing available Tasks
    A _task_ is a basic unit of work that can be done by Gradle as part of the build.
    
    In the `tutorial` directory, enter the command below to list all the available tasks in the project:
    [source,text]
    ----
    $ ./gradlew tasks
    ----
    
    The list includes tasks contributed by the `application` plugin and the plugin it applies:
    
    [source,text]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. 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)
  5. src/compress/bzip2/huffman.go

    		// mechanism.
    		if level == 31 {
    			// Since len(codes) >= 2 the only way that the values
    			// can match at all 32 bits is if they are equal, which
    			// is invalid. This ensures that we never enter
    			// infinite recursion.
    			return 0, StructuralError("equal symbols in Huffman tree")
    		}
    
    		if len(left) == 0 {
    			return buildHuffmanNode(t, right, level+1)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.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/traceevent.go

    	traceEvGoBlock             // goroutine blocks [timestamp, reason, stack ID]
    	traceEvGoUnblock           // goroutine is unblocked [timestamp, goroutine ID, goroutine seq, stack ID]
    	traceEvGoSyscallBegin      // syscall enter [timestamp, P seq, stack ID]
    	traceEvGoSyscallEnd        // syscall exit [timestamp]
    	traceEvGoSyscallEndBlocked // syscall exit and it blocked at some point [timestamp]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top