Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for floatkey (0.16 sec)

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

      }
    
      @Override
      @CheckForNull
      public K floorKey(@ParametricNullness K key) {
        return delegate().floorKey(key);
      }
    
      /**
       * A sensible definition of {@link #floorKey} in terms of {@code floorEntry}. If you override
       * {@code floorEntry}, you may wish to override {@code floorKey} to forward to this
       * implementation.
       */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingNavigableMap.java

      }
    
      @Override
      @CheckForNull
      public K floorKey(@ParametricNullness K key) {
        return delegate().floorKey(key);
      }
    
      /**
       * A sensible definition of {@link #floorKey} in terms of {@code floorEntry}. If you override
       * {@code floorEntry}, you may wish to override {@code floorKey} to forward to this
       * implementation.
       */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java

          assertTrue(Thread.holdsLock(mutex));
          return delegate().floorEntry(key);
        }
    
        @Override
        public @Nullable K floorKey(K key) {
          assertTrue(Thread.holdsLock(mutex));
          return delegate().floorKey(key);
        }
    
        @Override
        public NavigableMap<K, V> headMap(K toKey, boolean inclusive) {
          assertTrue(Thread.holdsLock(mutex));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

                                       flatbuffers::FlatBufferBuilder* builder) {
      std::vector<float> floatVec;
      floatVec.reserve(attrArray.getValue().size());
      for (auto attr : attrArray.getValue()) {
        floatVec.push_back(
            mlir::cast<mlir::FloatAttr>(attr).getValue().convertToFloat());
      }
      return builder->CreateVector(floatVec);
    }
    
    // F32Attr already returns a float as required by flatbuffer builders.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          Entry<K, Collection<V>> entry = sortedMap().floorEntry(key);
          return (entry == null) ? null : wrapEntry(entry);
        }
    
        @Override
        @CheckForNull
        public K floorKey(@ParametricNullness K key) {
          return sortedMap().floorKey(key);
        }
    
        @Override
        @CheckForNull
        public Entry<K, Collection<V>> ceilingEntry(@ParametricNullness K key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          Entry<K, Collection<V>> entry = sortedMap().floorEntry(key);
          return (entry == null) ? null : wrapEntry(entry);
        }
    
        @Override
        @CheckForNull
        public K floorKey(@ParametricNullness K key) {
          return sortedMap().floorKey(key);
        }
    
        @Override
        @CheckForNull
        public Entry<K, Collection<V>> ceilingEntry(@ParametricNullness K key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 48K bytes
    - Viewed (0)
  7. src/crypto/tls/bogo_shim_test.go

    	testenv.MustHaveExec(t)
    
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	if testenv.Builder() != "" && runtime.GOOS == "windows" {
    		t.Skip("#66913: windows network connections are flakey on builders")
    	}
    
    	// In order to make Go test caching work as expected, we stat the
    	// bogo_config.json file, so that the Go testing hooks know that it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/istioctl_test.go

    			t.ConfigIstio().File(apps.Namespace.Name(), "testdata/a.yaml").ApplyOrFail(t)
    
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    
    			// When this test passed the namespace through --namespace it was flakey
    			// because istioctl uses a global variable for namespace, and this test may
    			// run in parallel.
    			retry.UntilSuccessOrFail(t, func() error {
    				args := []string{
    					"--namespace=dummy",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/TreeRangeMap.java

            if (subRange.isEmpty()) {
              return Iterators.emptyIterator();
            }
            Cut<K> cutToStart =
                MoreObjects.firstNonNull(
                    entriesByLowerBound.floorKey(subRange.lowerBound), subRange.lowerBound);
            final Iterator<RangeMapEntry<K, V>> backingItr =
                entriesByLowerBound.tailMap(cutToStart, true).values().iterator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/TreeRangeMap.java

            if (subRange.isEmpty()) {
              return Iterators.emptyIterator();
            }
            Cut<K> cutToStart =
                MoreObjects.firstNonNull(
                    entriesByLowerBound.floorKey(subRange.lowerBound), subRange.lowerBound);
            final Iterator<RangeMapEntry<K, V>> backingItr =
                entriesByLowerBound.tailMap(cutToStart, true).values().iterator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top