Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,173 for consistency (0.23 sec)

  1. android/guava/src/com/google/common/collect/ImmutableMap.java

      }
    
      /**
       * Returns the empty map. This map behaves and performs comparably to {@link
       * Collections#emptyMap}, and is preferable mainly for consistency and maintainability of your
       * code.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
      @SuppressWarnings("unchecked")
      public static <K, V> ImmutableMap<K, V> of() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/dwarfgen/dwinl.go

    		if c.Root {
    			unifyCallRanges(inlcalls, k)
    		}
    	}
    
    	// Debugging
    	if base.Debug.DwarfInl != 0 {
    		dumpInlCalls(inlcalls)
    		dumpInlVars(dwVars)
    	}
    
    	// Perform a consistency check on inlined routine PC ranges
    	// produced by unifyCallRanges above. In particular, complain in
    	// cases where you have A -> B -> C (e.g. C is inlined into B, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/ValueGraph.java

       *
       * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the
       * endpoints are unordered and the graph is directed; it simply returns {@code false}. This is for
       * consistency with the behavior of {@link Collection#contains(Object)} (which does not generally
       * throw if the object cannot be present in the collection), and the desire to have this method's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/cmd/go/internal/generate/generate.go

    		// If a generator says '//go:generate go run <blah>' it almost certainly
    		// intends to use the same 'go' as 'go generate' itself.
    		// Prefer to resolve the binary from GOROOT/bin, and for consistency
    		// prefer to resolve any other commands there too.
    		gorootBinPath, err := cfg.LookPath(filepath.Join(cfg.GOROOTbin, path))
    		if err == nil {
    			path = gorootBinPath
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    				// It is needed here too because DetachVolume is not call actually and we keep the data consistency for every reconcile.
    				rc.actualStateOfWorld.AddVolumeToReportAsAttached(logger, attachedVolume.VolumeName, attachedVolume.NodeName)
    				continue
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

                            const int in_flight_nodes_limit)
          : status_(TF_NewStatus()),
            // If the context's default exector is set to async, re-using that in
            // each thread would cause collectives to deadlock. For consistency we
            // create a new sync executor for every thread.
            //
            // TODO(allenl): We should have an async API that works with the
            // parallel device.
            device_(device),
            executor_(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableCollection.java

     * {@link Collections#singleton(Object)} and <a
     * href="https://docs.oracle.com/javase/9/docs/api/java/util/Set.html#immutable">{@code Set.of}</a>,
     * we recommend using <i>these</i> classes instead for this reason (as well as for consistency).
     *
     * <h4>Creation</h4>
     *
     * <p>Except for logically "abstract" types like {@code ImmutableCollection} itself, each {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

          throw new UnsupportedOperationException();
        }
    
        @Override
        public String toString() {
          return getKey() + "=" + getValue();
        }
      }
    
      // TODO(fry): Separate logic for consistency between emul and nonemul implementation.
      // TODO(fry): Look into Maps.KeySet and Maps.Values, which can ideally be reused here but are
      // currently only package visible.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/ValueGraph.java

       *
       * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the
       * endpoints are unordered and the graph is directed; it simply returns {@code false}. This is for
       * consistency with the behavior of {@link Collection#contains(Object)} (which does not generally
       * throw if the object cannot be present in the collection), and the desire to have this method's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. pkg/controller/util/selectors/bimultimap_test.go

    			name := tc.name + fmt.Sprintf(" permutation %v", permutation)
    			t.Run(name, func(t *testing.T) {
    				multimap := NewBiMultimap()
    				for i := range permutation {
    					tc.ops[i](multimap)
    					// Run consistency check after every operation.
    					err := consistencyCheck(multimap)
    					if err != nil {
    						t.Fatalf(err.Error())
    					}
    				}
    				for _, expect := range tc.want {
    					err := expect(multimap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 01:56:36 UTC 2022
    - 16.9K bytes
    - Viewed (0)
Back to top