Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Inversa (0.18 sec)

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

          super(delegate, predicate);
          this.inverse =
              new FilteredEntryBiMap<>(delegate.inverse(), inversePredicate(predicate), this);
        }
    
        private FilteredEntryBiMap(
            BiMap<K, V> delegate, Predicate<? super Entry<K, V>> predicate, BiMap<V, K> inverse) {
          super(delegate, predicate);
          this.inverse = inverse;
        }
    
        BiMap<K, V> unfiltered() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java

            Iterator<Artifact> i = result.getArtifacts().iterator();
            assertEquals(n, i.next(), "n should be first");
            assertEquals(m, i.next(), "m should be second");
    
            // inverse order
            set = new LinkedHashSet<>();
            set.add(m);
            set.add(n);
    
            result = artifactResolver.resolveTransitively(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        }
        return false;
      }
    
      /**
       * Returns a value that satisfies the contract of the {@link #value} field based on the state of
       * given future.
       *
       * <p>This is approximately the inverse of {@link #getDoneValue(Object)}
       */
      private static Object getFutureValue(ListenableFuture<?> future) {
        if (future instanceof Trusted) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  4. .bazelrc

    # specified".
    build:cross_compile_macos_x86 --extra_toolchains=//tensorflow/tools/toolchains/cross_compile/config:macos-x86-cross-compile-cc-toolchain
    # Map --platforms=darwin_x86_64 to --cpu=darwin and vice-versa to make selects()
    # and transistions that use these flags work.
    build:cross_compile_macos_x86 --platform_mappings=tensorflow/tools/toolchains/cross_compile/config/platform_mappings
    
    # RBE cross-compile configs for Darwin x86
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  5. docs/en/docs/release-notes.md

    * 📝 Add External Link: 10 Tips for adding SQLAlchemy to FastAPI. PR [#11036](https://github.com/tiangolo/fastapi/pull/11036) by [@Donnype](https://github.com/Donnype).
    * 📝 Add External Link: Tips on migrating from Flask to FastAPI and vice-versa. PR [#11029](https://github.com/tiangolo/fastapi/pull/11029) by [@jtemporal](https://github.com/jtemporal).
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
Back to top