Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,020 for Replacer (0.17 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/DependencyInsightOutputNormalizer.groovy

                "# Decides between a single digit + spacing (e.g. '8 '), or two digits (e.g. 17)\n" +
                "# This is the value being replaced.\n" +
                "(?:\\d\\s|\\d{2})" +
                "# Capture the tail end of the table\n" +
                "(\\s+\\|)",
                // Replace the value with 11 for consistent testing
                "\$111\$2"
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

      parallel_execute_op->dropAllUses();
      parallel_execute.erase();
    }
    
    // Replaces TPUExecute with TPUExecuteAndUpdateVariables.
    void ReplaceExecute(tf_device::LaunchOp execute_launch,
                        tf_device::LaunchOp merged_execute_launch,
                        const VariableAccessesForTPUExecute& var_access_info) {
      // Replace the uses.
      for (int i = 0, end = var_access_info.old_to_new_output_mapping.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

            eclipseChild2.projectDependencies.collect { it.path } == []
            // jars that replace the project dependencies + the transitive dependency from :a
            eclipseChild2.classpath.collect { it.file.name } == ['child1.jar', 'child1-tests.jar', 'test-1.0.jar']
        }
    
        def "custom project dependencies are replaced when project is closed"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    stderr '^go: module example.net/missing@v0.1.0 found \(replaced by ./missing\), but does not contain package example.net/missing/subdir$'
    
    go get example.net/missing@v0.1.0
    
    
    # Getting the subdirectory should continue to fail even if the corresponding
    # module is already present in the build list.
    
    ! go get example.net/missing/subdir@v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/gen_quantized_function_library.py

    
    def _format_snake_case_op_name(s):
      """Formats the op name to snake case."""
      s = s.replace('2D', '2d').replace('3D', '3d')
      snake_case = ''.join(['_' + i.lower() if i.isupper() else i for i in s
                           ]).lstrip('_')
      return snake_case.replace('mat_mul', 'matmul').replace('bias_add', 'bias')
    
    
    def _substitute_impl_function_name_template(module: str) -> str:
      """Generates the op-specific implementation function name."""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 20 01:38:06 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    Module replacement rules allow a build to declare that a legacy library has been replaced by a new one.
    A good example when a new library replaced a legacy one is the `google-collections` -> `guava` migration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/passes/rewrite_quantized_io.cc

        : public PassWrapper<RewriteQuantizedIOPass, OperationPass<ModuleOp>> {
     public:
      StringRef getArgument() const final { return "tfr-rewrite-quantized-io"; }
    
      StringRef getDescription() const final {
        return "Replaces operands and results that has quantized type with their "
               "storage types.";
      }
      void runOnOperation() override;
    };
    
    void RewriteQuantizedIOPass::runOnOperation() {
      ModuleOp module = getOperation();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    				Filters: []*listener.Filter{
    					{Name: "default-network-filter-replaced"},
    				},
    			},
    			ListenerFilters: []*listener.ListenerFilter{
    				{
    					Name: "filter-after-replace",
    				},
    			},
    		},
    		{
    			Name: "another-listener",
    		},
    		{
    			Name: "listener-http-filter-to-be-replaced",
    			FilterChains: []*listener.FilterChain{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

         * identifier are added, then the value of the replace argument determines the behaviour.
         *
         * If replace is false then any existing repository with the same Id will remain in use. If replace
         * is true the new repository replaces the original.
         *
         * @param repository The repository to add to the internal search chain, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. cmd/xl-storage-meta-inline.go

    	return int(sz)
    }
    
    // replace will add or replace a key/value pair.
    func (x *xlMetaInlineData) replace(key string, value []byte) {
    	in := x.afterVersion()
    	sz, buf, _ := msgp.ReadMapHeaderBytes(in)
    	keys := make([][]byte, 0, sz+1)
    	vals := make([][]byte, 0, sz+1)
    
    	// Version plus header...
    	plSize := 1 + msgp.MapHeaderSize
    	replaced := false
    	for i := uint32(0); i < sz; i++ {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top