Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 107 of 107 for reachable (0.18 sec)

  1. guava/src/com/google/common/collect/Multimaps.java

        }
    
        @Override
        public Set<Entry<K, V>> entries() {
          return map.entrySet();
        }
    
        @Override
        Collection<Entry<K, V>> createEntries() {
          throw new AssertionError("unreachable");
        }
    
        @Override
        Multiset<K> createKeys() {
          return new Multimaps.Keys<K, V>(this);
        }
    
        @Override
        Iterator<Entry<K, V>> entryIterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

        extends AbstractMap<K, V> implements ConcurrentMap<K, V>, Serializable {
    
      /*
       * The basic strategy is to subdivide the table among Segments, each of which itself is a
       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    //                 names for outputs will be generated automatically.
    //  opts - various options for the function, e.g. XLA's inlining control.
    //  description - optional human-readable description of this function.
    //  status - Set to OK on success and an appropriate error on failure.
    //
    // Note that when the same TF_Output is listed as both an input and an output,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	// Getcwd returns the number of bytes written to buf, including the NUL.
    	if n < 1 || n > len(buf) || buf[n-1] != 0 {
    		return "", EINVAL
    	}
    	// In some cases, Linux can return a path that starts with the
    	// "(unreachable)" prefix, which can potentially be a valid relative
    	// path. To work around that, return ENOENT if path is not absolute.
    	if buf[0] != '/' {
    		return "", ENOENT
    	}
    
    	return string(buf[0 : n-1]), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        extends AbstractMap<K, V> implements ConcurrentMap<K, V>, Serializable {
    
      /*
       * The basic strategy is to subdivide the table among Segments, each of which itself is a
       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. src/cmd/go/go_test.go

    		switch f[0] {
    		case "true":
    			return true, f[1]
    		case "false":
    			return false, f[1]
    		}
    	}
    	tg.t.Fatalf("unexpected output checking staleness of package %v: %v", pkg, v)
    	panic("unreachable")
    }
    
    // wantStale fails with msg if pkg is not stale.
    func (tg *testgoData) wantStale(pkg, reason, msg string) {
    	tg.t.Helper()
    	stale, why := tg.isStale(pkg)
    	if !stale {
    		tg.t.Fatal(msg)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    				// Delete succeeded
    				logger.V(4).Info("provisionClaimOperation: cleaning volume succeeded", "PVC", klog.KObj(claim), "volumeName", volume.Name)
    				break
    			}
    			if !deleted {
    				// This is unreachable code, the volume was provisioned by an
    				// internal plugin and therefore there MUST be an internal
    				// plugin that deletes it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top