Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 293 for north (0.14 sec)

  1. tensorflow/compiler/jit/device_compilation_profiler.cc

      // (since they get the benefit of XLA right away without waiting for warmup)
      // and doesn't hurt much for dynamically shaped TensorFlow graphs (we "pay" at
      // most one cluster-compilation's worth of compile time).
      if (it->second.execution_count == 1) {
        return true;
      }
    
      if (compile_mode == DeviceCompileMode::kAsync) {
        // Asynchronous compilation is enabled.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     * <p>
     * Responsible for updating the file watchers based on changes to the contents of the virtual file system,
     * and changes to the file system hierarchies we are allowed to watch.</p>
     *
     * <p>
     * The following terms are worth distinguishing between:
     * </p>
     *
     * <dl>
     *     <dt>file system hierarchy</dt>
     *     <dd>A directory on the file system with all its descendants.</dd>
     *
     *     <dt>watchable hierarchies</dt>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/debug/dwarf/open.go

    	return d.parseTypes(name, types)
    }
    
    // AddSection adds another DWARF section by name. The name should be a
    // DWARF section name such as ".debug_addr", ".debug_str_offsets", and
    // so forth. This approach is used for new DWARF sections added in
    // DWARF 5 and later.
    func (d *Data) AddSection(name string, contents []byte) error {
    	var err error
    	switch name {
    	case ".debug_addr":
    		d.addr = contents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. cmd/metacache.go

    	recursive    bool       `msg:"rec"`
    	dataVersion  uint8      `msg:"v"`
    }
    
    func (m *metacache) finished() bool {
    	return !m.ended.IsZero()
    }
    
    // worthKeeping indicates if the cache by itself is worth keeping.
    func (m *metacache) worthKeeping() bool {
    	if m == nil {
    		return false
    	}
    	cache := m
    	switch {
    	case !cache.finished() && time.Since(cache.lastUpdate) > metacacheMaxRunningAge:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. cmd/metacache-bucket.go

    	// Test on a copy
    	// cleanup is the only one deleting caches.
    	caches, _ := b.cloneCaches()
    
    	for id, cache := range caches {
    		if !cache.worthKeeping() {
    			b.debugf("cache %s not worth keeping", id)
    			remove[id] = struct{}{}
    			continue
    		}
    		if cache.id != id {
    			logger.Info("cache ID mismatch %s != %s", id, cache.id)
    			remove[id] = struct{}{}
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/bitmap.go

    			r.metrics.incrementAllocationErrors(label.String(), "static")
    		}
    		return &ErrNotInRange{ip, r.net.String()}
    	}
    	if dryRun {
    		// Don't bother to check whether the IP is actually free. It's racy and
    		// not worth the effort to plumb any further.
    		return nil
    	}
    
    	allocated, err := r.alloc.Allocate(offset)
    	if err != nil {
    		// update metrics
    		r.metrics.incrementAllocationErrors(label.String(), "static")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/PublishToMavenRepository.java

    /**
     * Publishes a {@link org.gradle.api.publish.maven.MavenPublication} to a {@link MavenArtifactRepository}.
     *
     * @since 1.4
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class PublishToMavenRepository extends AbstractPublishToMaven {
        private final Transient.Var<DefaultMavenArtifactRepository> repository = varOf();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. cmd/os-reliable.go

    				i++
    				// Determine if os.NotExist error is because of
    				// baseDir's parent being present, retry it once such
    				// that the MkdirAll is retried once for the parent
    				// of dirPath.
    				// Because it is worth a retry to skip a different
    				// baseDir which is slightly higher up the depth.
    				nbaseDir := path.Dir(baseDir)
    				if baseDir != "" && nbaseDir != "" && nbaseDir != SlashSeparator {
    					baseDir = nbaseDir
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/unique/handle.go

    	// possible (for example, for strings and plain-ol'-data structs). We also get the
    	// benefit of not cramming every different type into a single map, but that's certainly
    	// not enough to outweigh the cost of two map lookups. What is worth it though, is saving
    	// on those allocations.
    	uniqueMaps = concurrent.NewHashTrieMap[*abi.Type, any]() // any is always a *uniqueMap[T].
    
    	// cleanupFuncs are functions that clean up dead weak pointers in type-specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

            def branch3 = new DefaultMultiCauseException("third failure", intermediateFailure1)
    
            def ultimateCause2 = new RuntimeException("ultimate cause 2")
            def branch4 = new DefaultMultiCauseException("forth failure", ultimateCause2)
            def branch5 = new DefaultMultiCauseException("fifth failure", ultimateCause2)
            def intermediateFailure2 = new DefaultMultiCauseException("intermediate failure 2", ultimateCause2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top