- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 261 for set_op (0.05 seconds)
-
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) -
tensorflow/c/c_api_test.cc
EXPECT_FALSE(TF_TensorIsAligned(a)); } TF_DeleteTensor(a); } TEST(CAPI, MessageBufferConversion) { NodeDef node_in, node_out; node_in.set_name("Test name"); node_in.set_op("Test op"); TF_Buffer* buffer = TF_NewBuffer(); TF_CHECK_OK(MessageToBuffer(node_in, buffer)); TF_CHECK_OK(BufferToMessage(buffer, &node_out)); TF_DeleteBuffer(buffer);
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Mon Nov 17 00:00:38 GMT 2025 - 97K 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) -
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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java
* @return the image URL */ public String getLoc() { return loc; } /** * Sets the location URL of the image. * @param loc the image URL to set */ public void setLoc(final String loc) { this.loc = loc; } /** * Gets the caption of the image. * @return the caption */ public String getCaption() { return caption; }Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 13 13:34:36 GMT 2025 - 3.8K 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) -
.teamcity/src/main/kotlin/projects/StageProject.kt
} }, ), ) } } private val TestCoverage.isCrossVersionTest get() = testType in setOf(TestType.ALL_VERSIONS_CROSS_VERSION, TestType.QUICK_FEEDBACK_CROSS_VERSION) private fun createPerformanceTests( model: CIBuildModel, performanceTestBucketProvider: PerformanceTestBucketProvider,Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 16 00:34:25 GMT 2025 - 12.1K bytes - Click Count (0)