- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 599 for set_op (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
tensorflow/c/c_api_experimental.cc
const int num_inputs = input_shapes->num_items; NodeDef node_def; tensorflow::ImmediateExecutionOperation* op = tensorflow::unwrap(tfe_op); node_def.set_name(op->Name()); node_def.set_op(op->Name()); for (int i = 0; i < num_inputs; ++i) { node_def.add_input("dummy_input"); } OperationFromInterface(op)->Attrs().FillAttrValueMap(node_def.mutable_attr());
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Sat Oct 04 05:55:32 GMT 2025 - 29.4K bytes - Click Count (0) -
ci/official/containers/ml_build/setup.python.sh
# See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== # # setup.python.sh: Install a specific Python version and packages for it. # Usage: setup.python.sh <pyversion> <requirements.txt> set -xe source ~/.bashrc VERSION=$1 REQUIREMENTS=$2 # Install Python packages for this container's version
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Thu Oct 30 20:25:44 GMT 2025 - 2.5K bytes - Click Count (0) -
internal/event/targetidset.go
import "maps" // TargetIDSet - Set representation of TargetIDs. type TargetIDSet map[TargetID]struct{} // Clone - returns copy of this set. func (set TargetIDSet) Clone() TargetIDSet { setCopy := NewTargetIDSet() maps.Copy(setCopy, set) return setCopy } // add - adds TargetID to the set. func (set TargetIDSet) add(targetID TargetID) { set[targetID] = struct{}{} } // Union - returns union with given set as new set.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 1.8K bytes - Click Count (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts
applyRule<DependencyRemovalByNameRule>(libs.sshdCore, setOf("slf4j-simple")) applyRule<DependencyRemovalByNameRule>(libs.sshdScp, setOf("slf4j-simple")) applyRule<DependencyRemovalByNameRule>(libs.sshdSftp, setOf("slf4j-simple")) applyRule<DependencyRemovalByNameRule>(libs.gradleProfiler, setOf("slf4j-simple")) applyRule<DependencyRemovalByNameRule>(libs.samplesCheck, setOf("slf4j-simple"))
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Jul 18 11:32:19 GMT 2025 - 9.3K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessorTest.java
SitemapUrl sitemap1 = new SitemapUrl(); sitemap1.setLoc("https://example.com/duplicate"); SitemapUrl sitemap2 = new SitemapUrl(); sitemap2.setLoc("https://example.com/duplicate"); SitemapUrl sitemap3 = new SitemapUrl(); sitemap3.setLoc("https://example.com/unique"); SitemapSet sitemapSet = new SitemapSet();Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 13 13:29:22 GMT 2025 - 12K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java
this.artifactId = artifactId; return this; } @Override public Model getPom() { return pom; } @Override public DefaultPluginVersionRequest setPom(Model pom) { this.pom = pom; return this; } @Override public List<RemoteRepository> getRepositories() { return repositories; } @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 4.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
} try { client.prepareUpdate() .setIndex(settingsIndexName) .setId(settingsId) .setDocAsUpsert(true) .setDoc(key, value) .setRetryOnConflict(5) .execute() .actionGet(getIndexTimeout());Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 20.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/ArrayListMultimap.java
stream.defaultReadObject(); expectedValuesPerKey = DEFAULT_VALUES_PER_KEY; int distinctKeys = stream.readInt(); Map<K, Collection<V>> map = new HashMap<>(); setMap(map); Serialization.populateMultimap(this, stream, distinctKeys); } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 05 23:15:58 GMT 2025 - 6.8K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts
listOf("install", "installAll") .flatMap { listOf(":distributions-full:$it", "distributions-full:$it", it) } .any(gradle.startParameter.taskNames::contains) fun isRunningDocsTestTask() = setOf(":docs:docsTest", "docs:docsTest") .any(gradle.startParameter.taskNames::contains) /** * Returns a new provider that takes its value from at most one
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 30 16:56:31 GMT 2025 - 5.9K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
MavenExecutionRequest request = new DefaultMavenExecutionRequest() .setRootDirectory(pom != null ? pom.toPath().getParent() : null) .setPom(pom) .setProjectPresent(true) .setShowErrors(true) .setPluginGroups(Arrays.asList("org.apache.maven.plugins")) .setLocalRepository(getLocalRepository())
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 20:01:00 GMT 2025 - 12.1K bytes - Click Count (0)