- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 857 for properties (0.07 sec)
-
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java
* Returns a new instance of {@link MavenOptions} with values interpolated using the given properties. * * @param properties a collection of property maps to use for interpolation * @return a new MavenOptions instance with interpolated values */ @Nonnull MavenOptions interpolate(@Nonnull Collection<Map<String, String>> properties);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 8.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/CompileAll.kt
).joinToString(" ") ) artifactRules = """$artifactRules platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties """.trimIndent() }) { companion object { fun buildTypeId(model: CIBuildModel) = buildTypeId(model.projectId) fun buildTypeId(projectId: String) = "${projectId}_CompileAllBuild" }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 1.2K bytes - Viewed (0) -
mvnw
safeValue=$(echo "$value" | tr -d '\r') case "$key" in wrapperUrl) wrapperUrl="$safeValue" break ;; esac done <"$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.properties" log "Downloading from: $wrapperUrl" if $cygwin; then wrapperJarPath=$(cygpath --path --windows "$wrapperJarPath") fi if command -v wget >/dev/null; then log "Found wget ... using wget"
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 14 22:24:15 UTC 2024 - 10.9K bytes - Viewed (0) -
guava/src/com/google/common/graph/StandardValueGraph.java
/** Constructs a graph with the properties specified in {@code builder}. */ StandardValueGraph(AbstractGraphBuilder<? super N> builder) { this( builder, builder.nodeOrder.<N, GraphConnections<N, V>>createMap( builder.expectedNodeCount.or(DEFAULT_NODE_COUNT)), 0L); } /** * Constructs a graph with the properties specified in {@code builder}, initialized with the given
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 17:29:38 UTC 2024 - 6.1K bytes - Viewed (0) -
tests/test_tutorial/test_extra_models/test_tutorial004.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 1.9K bytes - Viewed (0) -
tests/test_tutorial/test_body/test_tutorial001.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 14.7K bytes - Viewed (0) -
tests/test_tutorial/test_body/test_tutorial001_py310.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 15K bytes - Viewed (1) -
.gitignore
/tensorflow/lite/gen/** /tensorflow/lite/tools/make/downloads/** /tensorflow/lite/tools/make/gen/** /api_init_files_list.txt /estimator_api_init_files_list.txt *.whl dist # Android .gradle .idea *.iml local.properties gradleBuild # iOS *.pbxproj *.xcworkspace /*.podspec /tensorflow/lite/**/coreml/**/BUILD /tensorflow/lite/**/ios/BUILD /tensorflow/lite/**/objc/BUILD /tensorflow/lite/**/swift/BUILD
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Sep 20 17:43:17 UTC 2024 - 939 bytes - Viewed (0) -
guava/src/com/google/common/graph/AbstractGraphBuilder.java
* limitations under the License. */ package com.google.common.graph; import com.google.common.base.Optional; /** * A base class for builders that construct graphs with user-defined properties. * * @author James Sexton */ @ElementTypesAreNonnullByDefault abstract class AbstractGraphBuilder<N> { final boolean directed; boolean allowsSelfLoops = false;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 1.4K bytes - Viewed (0) -
guava/src/com/google/common/graph/StandardMutableGraph.java
@ElementTypesAreNonnullByDefault final class StandardMutableGraph<N> extends ForwardingGraph<N> implements MutableGraph<N> { private final MutableValueGraph<N, Presence> backingValueGraph; /** Constructs a {@link MutableGraph} with the properties specified in {@code builder}. */ StandardMutableGraph(AbstractGraphBuilder<? super N> builder) { this.backingValueGraph = new StandardMutableValueGraph<>(builder); } @Override BaseGraph<N> delegate() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 2.4K bytes - Viewed (0)