Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,564 for remapping (0.25 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

                ImplementationDependencyRelocator.ClassLiteralRemapping remapping = null;
                if (CLASS_DESC.equals(desc)) {
                    remapping = remapper.maybeRemap(name);
                    if (remapping != null) {
                        remappedClassLiterals.put(remapping.getLiteral(), remapping.getLiteralReplacement().replace("/", "."));
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. src/mdo/merger.vm

                        Object key = e.getKey();
                        V v = e.getValue();
                        map.merge(key, v, remapping);
                    }
                } else {
                    for (V v : vs) {
                        Object key = keyComputer.apply(v);
                        map.merge(key, v, remapping);
                    }
                }
            }
    
            @Override
            public boolean contains(Object o) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap.go

    	// for the 3 specializations
    	f    *os.File
    	Data []byte
    	// Some windows magic
    	Windows interface{}
    }
    
    // Mmap maps the given file into memory.
    // When remapping a file, pass the most recently returned Data.
    func Mmap(f *os.File, data *Data) (Data, error) {
    	return mmapFile(f, data)
    }
    
    // Munmap unmaps the given file from memory.
    func Munmap(d *Data) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1002 bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/RangeMap.java

       */
      void remove(Range<K> range);
    
      /**
       * Merges a value into a part of the map by applying a remapping function.
       *
       * <p>If any parts of the range are already present in this map, those parts are mapped to new
       * values by applying the remapping function. The remapping function accepts the map's existing
       * value for that part of the range and the given value. It returns the value to be associated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/runtime/os_openbsd.go

    	if err != 0 || uintptr(a) != s.base() {
    		print("runtime: remapping stack memory ", hex(s.base()), " ", s.npages*pageSize, " a=", a, " err=", err, "\n")
    		throw("remapping stack memory failed")
    	}
    }
    
    //go:nosplit
    func raise(sig uint32) {
    	thrkill(getthrid(), int(sig))
    }
    
    func signalM(mp *m, sig int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/grappler/grappler_test.cc

                            TF_Status* const status) -> void {
        TF_SetStatus(status, TF_OK, "");
        PopulateDefaultParam(params);
        params->device_type = "Success";
        params->optimizer_configs->remapping = TF_TriState_Off;
      };
    
      TF_ASSERT_OK(InitGraphPlugin(plugin_init));
      ASSERT_EQ(PluginGraphOptimizerRegistry::CreateOptimizers(
                    std::set<string>{"Success"})
                    .size(),
                1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/grappler/grappler.h

    //      params->device_type = "MY_DEVICE";
    //
    //      // Disable certain optimizer.
    //      params->optimizer_configs->struct_size =
    //      TP_OPTIMIZER_CONFIGS_STRUCT_SIZE; params->optimizer_configs->remapping =
    //      TF_TriState_Off;
    //
    //      // Set functions to create a new optimizer.
    //      params->optimizer->struct_size = TP_OPTIMIZER_STRUCT_SIZE;
    //      params->optimizer->create_func = (My_optimizer::create_func);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tpu_parallel_execute_sink_resource_write.cc

          terminator->eraseOperand(index_to_remove);
      }
    
      // Replace old parallel_execute with new parallel_execute by moving the
      // regions to a new parallel_execute and remapping the results.
      llvm::SmallVector<Type, 4> new_result_types;
      new_result_types.reserve(results_to_remap.size());
      for (Value old_result : results_to_remap)
        new_result_types.push_back(old_result.getType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 06 04:46:18 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            File instrumentedOutput = output.getInstrumentedOutput();
            File metadataDir = output.getMetadataDir();
            // TODO: Remove the remapping or move remapping to an uncached unit of work?
            ClassPath remappedClasses = remapClasses(instrumentedOutput, remapped);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/grappler/grappler.cc

      CONFIG_TOGGLE(auto_mixed_precision_onednn_bfloat16);
      CONFIG_TOGGLE(auto_mixed_precision_mkl);
      CONFIG_TOGGLE(pin_to_host_optimization);
      CONFIG_TOGGLE(layout_optimizer);
      CONFIG_TOGGLE(remapping);
      CONFIG_TOGGLE(loop_optimization);
      CONFIG_TOGGLE(dependency_optimization);
      CONFIG_TOGGLE(auto_parallel);
      CONFIG_TOGGLE(memory_optimization);
      CONFIG_TOGGLE(scoped_allocator_optimization);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top