Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 800 for states (1.64 sec)

  1. maven-core/src/site/apt/offline-mode.apt

      descriptor should declare whether it requires online/offline status.
      This value should be a java.lang.Boolean, so it can implement 3VL
      (three value logic: yes, no, don't-care). The requiresOnline
      field in the mojo descriptor has the following semantics:
    
      [true] Online status is required for this mojo to function
             correctly.
    
      [false] <<(Default)>> Either status is acceptable for the mojo to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/pcln.go

    	if dbg {
    		ctxt.Logf("%6x %6d %v\n", uint64(pc), val, fn.Text)
    	}
    
    	buf := make([]byte, binary.MaxVarintLen32)
    	started := false
    	for p := fn.Text; p != nil; p = p.Link {
    		// Update val. If it's not changing, keep going.
    		val = valfunc(ctxt, func_, val, p, 0, arg)
    
    		if val == oldval && started {
    			val = valfunc(ctxt, func_, val, p, 1, arg)
    			if dbg {
    				ctxt.Logf("%6x %6s %v\n", uint64(p.Pc), "", p)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            ComponentGraphResolveState state = potentialEdge.state;
            VirtualPlatformState virtualPlatformState = null;
            if (state == null || state instanceof LenientPlatformGraphResolveState) {
                virtualPlatformState = potentialEdge.component.getModule().getPlatformState();
                virtualPlatformState.participatingModule(component.getModule());
            }
            if (state == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Crc32cHashFunction.java

        static final int INVERSE_COMPUTE_FOR_WORD_OF_ALL_1S = 0xeee3ddcd;
    
        static int computeForWord(int word) {
          return STRIDE_TABLE[3][word & 0xFF]
              ^ STRIDE_TABLE[2][(word >>> 8) & 0xFF]
              ^ STRIDE_TABLE[1][(word >>> 16) & 0xFF]
              ^ STRIDE_TABLE[0][word >>> 24];
        }
    
        static int combine(int csum, int crc) {
          csum ^= crc;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  5. src/net/sendfile_test.go

    			// Return file data using io.Copy, which should use
    			// sendFile if available.
    			var sbytes int64
    			switch runtime.GOOS {
    			case "windows":
    				// Windows is not using sendfile for some reason:
    				// https://go.dev/issue/67042
    				sbytes, err = io.Copy(conn, f)
    			default:
    				expectSendfile(t, conn, func() {
    					sbytes, err = io.Copy(conn, f)
    				})
    			}
    			if err != nil {
    				errc <- err
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    . Next time you update the save lock state, Gradle will automatically clean up all stale lock state from it.
    
    Gradle needs to resolve a configuration, no longer marked as locked, to detect that associated lock state can be dropped.
    
    [[ignoring_dependencies]]
    == Ignoring specific dependencies from the lock state
    
    Dependency locking can be used in cases where reproducibility is not the main goal.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/runtime/preempt.go

    // goroutine to continue from its current safe-point.
    func resumeG(state suspendGState) {
    	if state.dead {
    		// We didn't actually stop anything.
    		return
    	}
    
    	gp := state.g
    	switch s := readgstatus(gp); s {
    	default:
    		dumpgstatus(gp)
    		throw("unexpected g status")
    
    	case _Grunnable | _Gscan,
    		_Gwaiting | _Gscan,
    		_Gsyscall | _Gscan:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/internal/trace/oldtrace.go

    	if addErr != nil {
    		// This should be impossible but let's be safe.
    		return fmt.Errorf("couldn't add strings: %w", addErr)
    	}
    
    	it.evt.strings.compactify()
    
    	// Convert stacks.
    	for id, stk := range pr.Stacks {
    		evt.stacks.insert(stackID(id), stack{pcs: stk})
    	}
    
    	// OPT(dh): if we could share the frame type between this package and
    	// oldtrace we wouldn't have to copy the map.
    	for pc, f := range pr.PCs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor.h

                                       SP_Stream other, TF_Status* status);
    
      // Without blocking the device, retrieve the current stream status.
      void (*get_stream_status)(const SP_Device* device, SP_Stream stream,
                                TF_Status* status);
    
      /*** EVENT CALLBACKS ***/
      // Create SP_Event. Performs platform-specific allocation and initialization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    
    	if status.State != runtimeapi.ContainerState_CONTAINER_CREATED {
    		// If container is not in the created state, we have tried and
    		// started the container. Set the StartedAt time.
    		cStatus.StartedAt = time.Unix(0, status.StartedAt)
    	}
    	if status.State == runtimeapi.ContainerState_CONTAINER_EXITED {
    		cStatus.Reason = status.Reason
    		cStatus.Message = status.Message
    		cStatus.ExitCode = int(status.ExitCode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top