Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 108 for asSet (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops.mlir

    module attributes {tf_saved_model.semantics} {
    
      // CHECK: tf_saved_model.session_initializer
      "tf_saved_model.session_initializer"() {
        initializers = [@init]
      } : () -> ()
    
      // CHECK: tf_saved_model.asset
      "tf_saved_model.asset"() {
        filename = "asset_filename",
        sym_name = "asset_sym_name"
      } : () -> ()
    
      // Representation for constants: (immutable) global tensor.
      // CHECK: tf_saved_model.global_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/half_plus_two_main_op/00000123/assets/foo.txt

    asset-file-contents...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 18:45:50 UTC 2017
    - 19 bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/testdata/AssetModule/assets/test_asset.txt

    TEST ASSET FILE CONTENTS...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 18 21:29:39 UTC 2020
    - 25 bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/testdata/half_plus_two_v2/00000123/assets/foo.txt

    asset-file-contents...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 29 01:58:54 UTC 2018
    - 19 bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/testdata/half_plus_two/00000123/assets/foo.txt

    asset-file-contents...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 13 05:22:48 UTC 2016
    - 19 bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/DefaultClassPath.java

            }
    
            @Override
            public boolean contains(Object o) {
                return asSet.contains(o);
            }
    
            @Override
            public boolean containsAll(Collection<?> c) {
                return asSet.containsAll(c);
            }
    
            @Override
            public int size() {
                return size;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          * output_tensor is a float 2x2 matrix
        """
        # Creates and populates an asset file.
        asset_dir = self.create_tempdir('assets').full_path
        asset_file = os.path.join(asset_dir, 'vocab_file.txt')
        file_io.write_string_to_file(
            filename=asset_file, file_content='hello,model,quantization\n'
        )
    
        vocab_file = asset.Asset(asset_file)
    
        raw_vocab = io_ops.read_file(vocab_file)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_asset_sinking_pass.h

    // the value `checkpoint_path`.
    // Also adds SessionInitializer op.
    absl::Status AddSessionInitializerAndInlineCheckpoint(
        ModuleOp module, absl::string_view checkpoint_path);
    
    // Creates a pass that sinks SavedModel asset filenames to constants.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>> CreateAssetSinkingPass(
        llvm::StringRef saved_model_dir);
    
    }  // namespace tf_saved_model
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 03:21:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableRangeSet.java

       *
       * <p><b>Note:</b> {@code a.asSet(d).equals(b.asSet(d))} does not imply {@code a.equals(b)}! For
       * example, {@code a} and {@code b} could be {@code [2..4]} and {@code (1..5)}, or the empty
       * ranges {@code [3..3)} and {@code [4..4)}.
       *
       * <p><b>Warning:</b> Be extremely careful what you do with the {@code asSet} view of a large
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/base/OptionalTest.java

        Set<String> expected = Collections.singleton("a");
        assertEquals(expected, Optional.of("a").asSet());
      }
    
      public void testAsSet_absent() {
        assertTrue("Returned set should be empty", Optional.absent().asSet().isEmpty());
      }
    
      public void testAsSet_presentIsImmutable() {
        Set<String> presentAsSet = Optional.of("a").asSet();
        try {
          presentAsSet.add("b");
          fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top