Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for disambiguate (0.23 sec)

  1. src/cmd/go/internal/modget/get.go

    	}
    	base.ExitIfErrors()
    
    	changed = r.updateBuildList(ctx, tentative)
    	return changed
    }
    
    // disambiguate eliminates candidates from cs that conflict with other module
    // versions that have already been resolved. If there is only one (unique)
    // remaining candidate, disambiguate returns that candidate, along with
    // an indication of whether that result interprets cs.path as a package
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    func tidyUnprunedRoots(ctx context.Context, mainModule module.Version, old *Requirements, pkgs []*loadPkg) (*Requirements, error) {
    	var (
    		// keep is a set of of modules that provide packages or are needed to
    		// disambiguate imports.
    		keep     []module.Version
    		keptPath = map[string]bool{}
    
    		// rootPaths is a list of module paths that provide packages directly
    		// imported from the main module. They should be included as roots.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// initialization.
    	ready *ready
    
    	// Underlying storage.Interface.
    	storage storage.Interface
    
    	// Expected type of objects in the underlying cache.
    	objectType reflect.Type
    	// Used for logging, to disambiguate *unstructured.Unstructured (CRDs)
    	groupResource schema.GroupResource
    
    	// "sliding window" of recent changes of objects and the current state.
    	watchCache *watchCache
    	reflector  *cache.Reflector
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    
    // Defines some utility macros.
    
    // The GNU compiler emits a warning if nested "if" statements are followed by
    // an "else" statement and braces are not used to explicitly disambiguate the
    // "else" binding.  This leads to problems with code like:
    //
    //   if (gate)
    //     ASSERT_*(condition) << "Some message";
    //
    // The "switch (0) case 0:" idiom is used to suppress this.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

     private:
      mutex mu_;
      absl::flat_hash_map<uint64, int64> sequence_numbers_;
    };
    
    // Get a monotonic sequence numbers for a graph identified by its `fingerprint`.
    // The sequence number is necessary to disambiguate clusters extracted from the
    // same graph and when duplicate graphs exist within the same process.
    int64_t GetNextClusterSequenceNumber(uint64 fingerprint) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    
    // Defines some utility macros.
    
    // The GNU compiler emits a warning if nested "if" statements are followed by
    // an "else" statement and braces are not used to explicitly disambiguate the
    // "else" binding.  This leads to problems with code like:
    //
    //   if (gate)
    //     ASSERT_*(condition) << "Some message";
    //
    // The "switch (0) case 0:" idiom is used to suppress this.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	if proxy != nil && proxy.SidecarScope != nil {
    		return proxy.SidecarScope.servicesByHostname[hostname]
    	}
    
    	// SidecarScope shouldn't be null here. If it is, we can't disambiguate the hostname to use for a namespace,
    	// so the selection must be undefined.
    	for _, service := range ps.ServiceIndex.HostnameAndNamespace[hostname] {
    		return service
    	}
    
    	// No service found
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top