Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for remapping (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    <2> Remaps the path of the extracting files into the destination directory by dropping the `libs` segment from the file path
    <3> Ignores the empty directories resulting from the remapping, see Caution note below
    
    [CAUTION]
    ====
    You can not change the destination path of empty directories with this technique.
    You can learn more in https://github.com/gradle/gradle/issues/2940[this issue].
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		t.Errorf("unexpected object: %#v", test.Infos[0].Object)
    	}
    
    	mapping, err := b.Do().ResourceMapping()
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if mapping.GroupVersionKind.Kind != "Pod" || mapping.Resource != (schema.GroupVersionResource{Group: "", Version: "v1", Resource: "pods"}) {
    		t.Errorf("unexpected resource mapping: %#v", mapping)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      // Clone the operations and remap the inputs to use the function arguments.
      IRMapping mapping;
      mapping.map(inputs, outlined_func.getArguments());
      builder->setInsertionPoint(outlined_func_block, outlined_func_block->begin());
      for (Operation* op : ops) {
        builder->clone(*op, mapping);
      }
    
      // Set the returned values to use cloned ops results using mapping.
      llvm::SmallVector<Value, 4> results_after_mapping;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

      def _create_and_save_vocab_table_lookup_model_tf1(
          self,
          output_path: str,
          tags: Collection[str],
          signature_def_key: str,
      ) -> Tuple[Mapping[str, core.Tensor], Mapping[str, core.Tensor]]:
        """Creates and saves a simple model that uses a vocab table.
    
        Args:
          output_path: Path to the directory to save the created model.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    struct PartitionedCallLiftingInfo {
      // Function with resources lifted. Can be nullptr if nothing needs to change.
      func::FuncOp lifted_callee;
      // Mapping from old resource outputs to their aliasing output inputs.
      llvm::SmallDenseMap<int64_t, int64_t> old_outputs_aliasing_old_inputs;
      // Mapping from old to new output indices in case any output is removed.
      llvm::SmallVector<int64_t, 4> old_to_new_output_indices;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        return true;
      }
      bool isLegalToInline(Region* dest, Region* src, bool wouldBeCloned,
                           IRMapping& valueMapping) const override {
        return true;
      }
      bool isLegalToInline(Operation* op, Region* dest, bool wouldBeCloned,
                           IRMapping& valueMapping) const override {
        return true;
      }
    
      // Don't recursively analyze operations, because they can all be "inlined".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. kotlin-js-store/yarn.lock

      integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
    
    "@jridgewell/gen-mapping@^0.3.0":
      version "0.3.1"
      resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz#cf92a983c83466b8c0ce9124fadeaf09f7c66ea9"
      integrity sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==
      dependencies:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Multimaps.java

       * entry returned by the iterator), the results of the iteration are undefined.
       *
       * <p>The multimap supports mapping removal, which removes the corresponding mapping from the map.
       * It does not support any operations which might add mappings, such as {@code put}, {@code
       * putAll} or {@code replaceValues}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Multimaps.java

       * entry returned by the iterator), the results of the iteration are undefined.
       *
       * <p>The multimap supports mapping removal, which removes the corresponding mapping from the map.
       * It does not support any operations which might add mappings, such as {@code put}, {@code
       * putAll} or {@code replaceValues}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    	minHeapForMetadataHugePages = 1 << 30
    )
    
    // physPageSize is the size in bytes of the OS's physical pages.
    // Mapping and unmapping operations must be done at multiples of
    // physPageSize.
    //
    // This must be set by the OS init code (typically in osinit) before
    // mallocinit.
    var physPageSize uintptr
    
    // physHugePageSize is the size in bytes of the OS's default physical huge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top