Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for new_target (0.3 sec)

  1. src/test/java/org/codelibs/fess/it/admin/SchedulerTests.java

            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("target", "new_target");
            return updateMap;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testUpdate();
            testDelete();
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencyResolveDetails.java

            dirty = true;
       }
    
        @Override
        public void useTarget(Object notation) {
            ModuleVersionSelector newTarget = USE_TARGET_NOTATION_PARSER.parseNotation(notation);
            useVersion = null;
            useSelector = DefaultModuleComponentSelector.newSelector(newTarget);
            dirty = true;
        }
    
        @Override
        public DependencyResolveDetails because(String description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

        std::function<std::string(Operation*)> get_target,
        std::function<bool(Operation*)> is_ignored_op) {
      // Iteratively find clusters of different targets within the `block`.
      // Whenever we see an operation that is assigned to an accelerator target
      // (ie. get_target(op) != ""), we try to merge it into the last cluster
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    // `get_target` that takes an op and returns the target name. `is_ignored_op` is
    // a hook to ignore certain ops that are not included in any clusters.
    llvm::StringMap<SmallVector<Cluster>> BuildAllClusters(
        Block& block, const TF::SideEffectAnalysis::Info& side_effect_analysis,
        std::function<std::string(Operation*)> get_target,
        std::function<bool(Operation*)> is_ignored_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top