- Sort Score
- Result 10 results
- Languages All
Results 2301 - 2310 of 6,241 for IF (0.02 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java
if (deploymentTimestamp == null) { deploymentTimestamp = getUtcDateFormatter().format(new Date()); } return deploymentTimestamp; } protected String constructVersion(Versioning versioning, String baseVersion) { String version = null; Snapshot snapshot = versioning.getSnapshot(); if (snapshot != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelResolver.java
@Override public void addRepository(final Repository repository, boolean replace) throws InvalidRepositoryException { if (session.isIgnoreArtifactDescriptorRepositories()) { return; } if (!repositoryIds.add(repository.getId())) { if (!replace) { return; } removeMatchingRepository(repositories, repository.getId()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/io/ModelParseException.java
* * @param message The error message, may be {@code null}. * @param lineNumber The one-based index of the line containing the error or {@code -1} if unknown. * @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown. */ public ModelParseException(String message, int lineNumber, int columnNumber) { super(message); this.lineNumber = lineNumber;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsParseException.java
* * @param message The error message, may be {@code null}. * @param lineNumber The one-based index of the line containing the error or {@code -1} if unknown. * @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown. */ public SettingsParseException(String message, int lineNumber, int columnNumber) { super(message); this.lineNumber = lineNumber;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt
val performanceProjectName = "performance" val taskName = if (performanceTestSpec.type == PerformanceTestType.flakinessDetection) "performanceTestFlakinessReport" else "performanceTestReport" artifactRules = """ testing/$performanceProjectName/build/performance-test-results.zip """ if (performanceTestProject.performanceTests.any { it.testProjects.isNotEmpty() }) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 10 13:15:00 UTC 2024 - 5.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java
throws ArtifactResolutionException, InvalidVersionSpecificationException { ScopeArtifactFilter filter; if (Artifact.SCOPE_PROVIDED.equals(expectedScope)) { filter = new ScopeArtifactFilter(Artifact.SCOPE_COMPILE); } else if (Artifact.SCOPE_SYSTEM.equals(expectedScope)) { filter = new ScopeArtifactFilter(Artifact.SCOPE_COMPILE); } else {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 42.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/AbstractLoadingCacheTest.java
new AbstractLoadingCache<Object, Object>() { @Override public Object get(Object key) throws ExecutionException { Object v = valueRef.get(); if (v == null) { throw new ExecutionException(cause); } return v; } @Override public @Nullable Object getIfPresent(Object key) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComLockingAndX.java
protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex; if ( this.unlocks != null ) { for ( LockingAndXRange lockingAndXRange : this.unlocks ) { dstIndex += lockingAndXRange.encode(dst, dstIndex); } } if ( this.locks != null ) { for ( LockingAndXRange lockingAndXRange : this.locks ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java
} public void cleanUp() throws IOException { for (Iterator it = filesToDelete.iterator(); it.hasNext(); ) { File file = (File) it.next(); if (file.exists()) { if (file.isDirectory()) { FileUtils.deleteDirectory(file); } else { file.delete(); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.7K bytes - Viewed (0) -
tensorflow/c/eager/c_api_unified_experimental_graph.cc
if (op_) { return errors::FailedPrecondition("Reset called on already built op."); } if (raw_device_name) { device_name_ = raw_device_name; } op_type_ = op; return absl::OkStatus(); } absl::Status SetOpName(const char* const op_name) override { if (op_) { return errors::FailedPrecondition(
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 15.7K bytes - Viewed (0)