Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 192 for getLine (0.25 sec)

  1. maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java

            when(project.getPackaging()).thenReturn("jar");
            when(project.getName()).thenReturn("Apache Maven Embedder");
            when(project.getVersion()).thenReturn("3.5.4-SNAPSHOT");
            when(project.getFile()).thenReturn(new File(basedir, "maven-embedder/pom.xml"));
            when(event.getProject()).thenReturn(project);
    
            MavenProject rootProject = mock(MavenProject.class);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencySet.java

                    boolean testOnly = isTestConfiguration(configurations.get(artifact.getId()));
                    boolean asModule = isModule(testOnly, artifact.getFile());
                    if (componentIdentifier instanceof ProjectComponentIdentifier) {
                        visitor.visitProjectDependency(artifact, testOnly, asModule);
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/ToolingApiGradleExecutor.java

                    if (targetGradleVersion.compareTo(TestKitFeature.PLUGIN_CLASSPATH_INJECTION.getSince()) < 0) {
                        throw new UnsupportedFeatureException("support plugin classpath injection", targetGradleVersion, TestKitFeature.PLUGIN_CLASSPATH_INJECTION.getSince());
                    } else {
                        checkDeprecationWarning(targetGradleVersion);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/AbstractMavenPublisher.java

            }
            artifactPublisher.publish(null, "pom", publication.getPomArtifact().getFile());
            for (MavenArtifact artifact : publication.getAdditionalArtifacts()) {
                artifactPublisher.publish(artifact.getClassifier(), artifact.getExtension(), artifact.getFile());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

        private static final String TOUCHFILE_NAME = "resolver-status.properties";
    
        public boolean isUpdateRequired(Artifact artifact, ArtifactRepository repository) {
            File file = artifact.getFile();
    
            ArtifactRepositoryPolicy policy = artifact.isSnapshot() ? repository.getSnapshots() : repository.getReleases();
    
            if (!policy.isEnabled()) {
                if (getLogger().isDebugEnabled()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                        throw e;
                    }
    
                    logger.debug("  Artifact " + artifact.getId() + " resolved to " + artifact.getFile());
    
                    artifact.setResolved(true);
                } else if (!artifact.getFile().exists()) {
                    String error = updateCheckManager.getError(artifact, repository);
                    if (error != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/ResourceUtil.java

            assertArgumentNotNull("url", url);
    
            final String s = url.getFile();
            return URLUtil.decode(s, "UTF8");
        }
    
        /**
         * リソースのファイルを返します。
         *
         * @param url
         *            リソースのURL。{@literal null}であってはいけません
         * @return ファイル
         */
        public static File getFile(final URL url) {
            assertArgumentNotNull("url", url);
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

    package com.google.common.util.concurrent;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.Strings.isNullOrEmpty;
    import static com.google.common.util.concurrent.Futures.getDone;
    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    
    import com.google.common.util.concurrent.internal.InternalFutureFailureAccess;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

                        addSignature(new Signature(artifact, artifact::getFile, null, null, this, this));
                    }
                });
                publicationInternal.whenPublishableArtifactRemoved(this::removeSignature);
            }
        }
    
        private boolean isNoSignatureArtifact(PublicationArtifact artifact) {
            return !getSignatureFiles().contains(artifact.getFile());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/test/apis_meta_v1_unstructed_unstructure_test.go

    			},
    		},
    	}
    
    	if got, want := unstruct.GetAPIVersion(), "test_version"; got != want {
    		t.Errorf("GetAPIVersions() = %s, want %s", got, want)
    	}
    
    	if got, want := unstruct.GetKind(), "test_kind"; got != want {
    		t.Errorf("GetKind() = %s, want %s", got, want)
    	}
    
    	if got, want := unstruct.GetNamespace(), "test_namespace"; got != want {
    		t.Errorf("GetNamespace() = %s, want %s", got, want)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 17.3K bytes
    - Viewed (0)
Back to top