Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getCollection (0.2 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapReplaceValuesTester.java

      }
    
      @MapFeature.Require({SUPPORTS_PUT, SUPPORTS_REMOVE})
      public void testReplaceValuesPropagatesToGet() {
        Collection<V> getCollection = multimap().get(k0());
        List<V> values = Arrays.asList(v0(), v2(), v3());
        multimap().replaceValues(k0(), values);
        assertContentsAnyOrder(getCollection, v0(), v2(), v3());
      }
    
      @MapFeature.Require(absent = SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/google/MultimapReplaceValuesTester.java

      }
    
      @MapFeature.Require({SUPPORTS_PUT, SUPPORTS_REMOVE})
      public void testReplaceValuesPropagatesToGet() {
        Collection<V> getCollection = multimap().get(k0());
        List<V> values = Arrays.asList(v0(), v2(), v3());
        multimap().replaceValues(k0(), values);
        assertContentsAnyOrder(getCollection, v0(), v2(), v3());
      }
    
      @MapFeature.Require(absent = SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionBackedFileTree.java

            formatter.node("backing collection");
            formatter.startChildren();
            collection.describeContents(formatter);
            formatter.endChildren();
        }
    
        public AbstractFileCollection getCollection() {
            return collection;
        }
    
        @Override
        public FileTreeInternal matching(PatternFilterable patterns) {
            return new FilteredFileTree(this, taskDependencyFactory, patternSetFactory, () -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FilteredFileCollection.java

            if (newCollection == collection) {
                return this;
            }
            return newCollection.filter(filterSpec);
        }
    
        public FileCollectionInternal getCollection() {
            return collection;
        }
    
        public Spec<? super File> getFilterSpec() {
            return filterSpec;
        }
    
        @Override
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 08:16:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServerFixture.groovy

        URI uri(String path) {
            return getUri().resolve(path)
        }
    
        boolean isRunning() {
            server.running
        }
    
        abstract Handler getCustomHandler()
    
        HandlerCollection getCollection() {
            return securityHandlerWrapper.handlers
        }
    
        Set<String> getAuthenticationAttempts() {
            return authenticationAttempts
        }
    
        Set<Map<String, String>> getAllHeaders() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

              output_path,
              signature_def_key,
              tags,
              inputs=inputs,
              outputs=outputs,
              init_op=lookup_ops.tables_initializer(),
              assets_collection=ops.get_collection(ops.GraphKeys.ASSET_FILEPATHS),
          )
    
        return inputs, outputs
    
      def _create_and_save_file_init_hash_table_model_tf1(
          self,
          output_path: str,
          tags: Collection[str],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top