Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for new_target (0.19 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)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

                customCopy {
                    targetDir = file('newTarget')
                }
            """
            succeeds taskPath
    
            then:
            executedAndNotSkipped(taskPath)
            targetFile1.assertDoesNotExist()
            targetFile2.assertDoesNotExist()
            file('newTarget/source1.txt').assertIsFile()
            file('newTarget/source2.txt').assertIsFile()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

                    xcodeProject.getGroups().getTests().from(sources);
    
                    String targetName = component.getModule().get();
                    final XcodeTarget target = newTarget(targetName, component.getModule().get(), toGradleCommand(project), getBridgeTaskPath(project), sources);
                    target.getSwiftSourceCompatibility().convention(component.getSourceCompatibility());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprog/gc.go

    					memLimitSink[i][j] = 9
    				}
    			}
    			// Again, Gosched to slow down the allocator.
    			runtime.Gosched()
    			select {
    			case newTarget := <-target:
    				if newTarget == math.MaxInt64 {
    					return
    				}
    				sinkSize = int(newTarget / memLimitUnit)
    			default:
    			}
    		}
    	}()
    	var m [2]metrics.Sample
    	m[0].Name = "/memory/classes/total:bytes"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/assignments.go

    			check.use(rhs)
    		}
    		return
    	}
    
    	if x == nil {
    		var target *target
    		// avoid calling ExprString if not needed
    		if T != nil {
    			if _, ok := under(T).(*Signature); ok {
    				target = newTarget(T, ExprString(lhs))
    			}
    		}
    		x = new(operand)
    		check.expr(target, x, rhs)
    	}
    
    	if T == nil && context == "assignment" {
    		context = "assignment to _ identifier"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/go/types/assignments.go

    			check.use(rhs)
    		}
    		return
    	}
    
    	if x == nil {
    		var target *target
    		// avoid calling ExprString if not needed
    		if T != nil {
    			if _, ok := under(T).(*Signature); ok {
    				target = newTarget(T, ExprString(lhs))
    			}
    		}
    		x = new(operand)
    		check.expr(target, x, rhs)
    	}
    
    	if T == nil && context == "assignment" {
    		context = "assignment to _ identifier"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            def ref = registry.atState("ref", ModelNode.State.Discovered)
    
            when:
            ref.setTarget(newTarget)
    
            then:
            IllegalStateException e = thrown()
            e.message == "Cannot set target for model element 'ref' as this element is not mutable."
    
            where:
            newTarget << [null, Stub(MutableModelNode)]
        }
    
        def "rules are invoked in order before element is closed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
Back to top