Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 179 for north (0.14 sec)

  1. src/runtime/slice.go

    		msanread(fromPtr, size)
    		msanwrite(toPtr, size)
    	}
    	if asanenabled {
    		asanread(fromPtr, size)
    		asanwrite(toPtr, size)
    	}
    
    	if size == 1 { // common case worth about 2x to do here
    		// TODO: is this still worth it with new memmove impl?
    		*(*byte)(toPtr) = *(*byte)(fromPtr) // known to be a byte pointer
    	} else {
    		memmove(toPtr, fromPtr, size)
    	}
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

            }
        }
    
        @Requires(value = IntegTestPreconditions.NotParallelExecutor, reason = """
    Don't run in parallel mode, as the expectation for the setup build are incorrect
    It could potentially be worth running this in parallel mode to demonstrate the difference between
    parallel and configuration cache
    """)
        def "runs tasks in same project in parallel by default"() {
            server.start()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/jvm/war/src/main/java/org/gradle/api/tasks/bundling/War.java

    import java.util.Collections;
    import java.util.concurrent.Callable;
    
    import static org.gradle.api.internal.lambdas.SerializableLambdas.spec;
    
    /**
     * Assembles a WAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class War extends Jar {
        public static final String WAR_EXTENSION = "war";
    
        private File webXml;
        private FileCollection classpath;
        private final DefaultCopySpec webInf;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top