Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,650 for marking (0.36 sec)

  1. src/runtime/mfixalloc.go

    // contains heap pointers.
    //
    // The caller is responsible for locking around FixAlloc calls.
    // Callers can keep state in the object but the first word is
    // smashed by freeing and reallocating.
    //
    // Consider marking fixalloc'd types not in heap by embedding
    // runtime/internal/sys.NotInHeap.
    type fixalloc struct {
    	size   uintptr
    	first  func(arg, p unsafe.Pointer) // called first time p is returned
    	arg    unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 24 20:28:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesForMigration.java

     * and a future role which will replace it in the next major Gradle version. These roles represent a narrowing migration
     * from one role to another by marking usages which are present in the current role but not present in the eventual role
     * as deprecated.
     *
     * <p>The roles here are all meant to be temporary roles used for migration only, to be removed in Gradle 9.0.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                        LOGGER.debug("Marking daemon stopped due to {}. The daemon is not running a build", reason);
                        stopReason = reason;
                        setState(State.Stopped);
                        break;
                    case Busy:
                    case Canceled:
                    case Broken:
                    case StopRequested:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. pkg/util/filesystem/util_windows.go

    		})
    
    	// PollImmediate will return "timed out waiting for the condition" if the function it
    	// invokes never returns true
    	if err != nil {
    		klog.V(2).InfoS("Failed all attempts to dial the socket so marking it as a non-Unix Domain socket. Last socket error along with the error from PollImmediate follow",
    			"filePath", filePath, "lastSocketErr", lastSocketErr, "err", err)
    		return false, nil
    	}
    	return true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compilation_profiler.cc

      // observed to be megamorphic once stay megamorphic forever.
      if (!stats->is_megamorphic &&
          ShouldBeMegamorphic(stats->compile_count, stats->execution_count)) {
        VLOG(1) << "Marking " << function.name()
                << " as megamorphic, compile_count=" << stats->compile_count
                << " execution_count=" << stats->execution_count;
        stats->is_megamorphic = true;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/statusupdater/node_status_updater.go

    		// to indicate this node status needs to be updated again
    		nsu.actualStateOfWorld.SetNodeStatusUpdateNeeded(logger, nodeName)
    
    		logger.V(2).Info("Could not update node status; re-marking for update", "node", klog.KObj(nodeObj), "err", err)
    
    		return err
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/plist.go

    			q.Pc = p.Pc
    			q.Link = p
    			// Advance to the end of unsafe point.
    			for p.Link != nil && isUnsafePoint(p.Link) {
    				p = p.Link
    			}
    			if p.Link == nil {
    				break // Reached the end, don't bother marking the end
    			}
    			p = ctxt.EndUnsafePoint(p, newprog, prevPcdata)
    			p.Pc = p.Link.Pc
    			continue
    		}
    		if isRestartable(p) {
    			val := int64(abi.UnsafePointRestart1)
    			if val == prevRestart {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. src/runtime/mbarrier.go

    //         *slot = ptr
    //
    // slot is the destination in Go code.
    // ptr is the value that goes into the slot in Go code.
    //
    // Shade indicates that it has seen a white pointer by adding the referent
    // to wbuf as well as marking it.
    //
    // The two shades and the condition work together to prevent a mutator
    // from hiding an object from the garbage collector:
    //
    // 1. shade(*slot) prevents a mutator from hiding an object by moving
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/PersistentDaemonRegistry.java

                lock.unlock();
            }
        }
    
        @Override
        public void markState(final Address address, final State state) {
            lock.lock();
            try {
                LOGGER.debug("Marking busy by address: {}", address);
                cache.update(new ObjectHolder.UpdateAction<DaemonRegistryContent>() {
                    @Override
                    public DaemonRegistryContent update(DaemonRegistryContent oldValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/cluster_outlining.cc

      } else {
        func_name = "_func";
      }
    
      func::FuncOp outlined_func =
          func::FuncOp::create(op.getLoc(), func_name, func_type);
    
      // This function is not externally visible and marking it private would allow
      // symbol-dce pass to remove it when it is not referenced anymore.
      outlined_func.setPrivate();
    
      // Create function body.
      Block* outlined_func_block = outlined_func.addEntryBlock();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top