Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 147 for Investigate (0.33 sec)

  1. src/cmd/go/internal/script/cmds.go

    }
    
    // pathEnvName returns the platform-specific variable used by os/exec.LookPath
    // to look up executable names (either "PATH" or "path").
    //
    // TODO(bcmills): Investigate whether we can instead use PATH uniformly and
    // rewrite it to $path when executing subprocesses.
    func pathEnvName() string {
    	switch runtime.GOOS {
    	case "plan9":
    		return "path"
    	default:
    		return "PATH"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      // The SCCP pass performs constant propagation across the IR, which, for
      // example, propagates constant arguments into callee functions.
      // TODO(hinsu): Investigate if we really need SCCP pass before shape inference
      // and can do with just one pass after the shape inference.
      pm.addPass(mlir::createSCCPPass());
      // Guarantee all functions have one use, which enables shape inference.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        Iterator<? extends V> iterator = values.iterator();
        if (!iterator.hasNext()) {
          return removeAll(key);
        }
    
        // TODO(lowasser): investigate atomic failure?
        Collection<V> collection = getOrCreateCollection(key);
        Collection<V> oldValues = createCollection();
        oldValues.addAll(collection);
    
        totalSize -= collection.size();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 48K bytes
    - Viewed (0)
  4. src/go/types/decl.go

    		}
    
    		if check.conf._EnableAlias {
    			// TODO(gri) Should be able to use nil instead of Typ[Invalid] to mark
    			//           the alias as incomplete. Currently this causes problems
    			//           with certain cycles. Investigate.
    			//
    			// NOTE(adonovan): to avoid the Invalid being prematurely observed
    			// by (e.g.) a var whose type is an unfinished cycle,
    			// Unalias does not memoize if Invalid. Perhaps we should use a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    For more information about the build cache, check out the
    <<build_cache_use_cases.adoc#use_cases_cache,build cache documentation>>.
    
    === Visualize the build cache with build scans
    
    Build scans can help you investigate build cache effectiveness.
    In the performance screen, the _"Build cache"_ tab shows you statistics about:
    
    * how many tasks interacted with a cache
    * which cache was used
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        Iterator<? extends V> iterator = values.iterator();
        if (!iterator.hasNext()) {
          return removeAll(key);
        }
    
        // TODO(lowasser): investigate atomic failure?
        Collection<V> collection = getOrCreateCollection(key);
        Collection<V> oldValues = createCollection();
        oldValues.addAll(collection);
    
        totalSize -= collection.size();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  7. configure.py

      cleanup_makefile()
      setup_python(environ_cp)
    
      if is_windows():
        environ_cp['TF_NEED_OPENCL'] = '0'
        environ_cp['TF_CUDA_CLANG'] = '0'
        # TODO(ibiryukov): Investigate using clang as a cpu or cuda compiler on
        # Windows.
        environ_cp['TF_DOWNLOAD_CLANG'] = '0'
        environ_cp['TF_NEED_MPI'] = '0'
    
      if is_macos():
        environ_cp['TF_NEED_TENSORRT'] = '0'
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  8. cmd/storage-rest-server.go

    		if exit {
    			logger.Fatal(err, "Unable to initialize backend")
    		}
    	default:
    		if !exit {
    			storageLogOnceIf(GlobalContext, fmt.Errorf("Drive %s returned an unexpected error: %w, please investigate - drive will be offline", endpoint, err), "log-fatal-errs")
    		} else {
    			logger.Fatal(err, "Unable to initialize backend")
    		}
    	}
    }
    
    // StatInfoFile returns file stat info.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    // service catalog.mystore.com
    //
    //	--> 172.16.0.1:55446 (with ServicePort pointing to 80) and
    //	--> 172.16.0.1:33333 (with ServicePort pointing to 8080)
    //
    // TODO: Investigate removing ServiceInstance entirely.
    type IstioEndpoint struct {
    	// Labels points to the workload or deployment labels.
    	Labels labels.Instance
    
    	// Address is the address of the endpoint, using envoy proto.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            if (userDefinedLocalRepo != null) {
                return userDefinedLocalRepo;
            }
    
            // TODO Investigate why this can also be a Java system property and not just a Maven user property like
            // other properties
            return request.getSystemProperties().getProperty(MavenCli.LOCAL_REPO_PROPERTY);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top