Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 195 for getLine (0.14 sec)

  1. 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)
  2. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                    project.getAttachedArtifacts().stream());
            return artifacts.map(RepositoryUtils::toArtifact);
        }
    
        private boolean isRegularFile(Artifact artifact) {
            return artifact.getFile() != null && artifact.getFile().isFile();
        }
    
        private void installIntoProjectLocalRepository(Artifact artifact) {
            Path target = getArtifactPath(artifact);
            try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

                getClassifier() >> "classified"
                getFile() >> testDirectoryProvider.createFile('artifact1')
            }
            IvyArtifact artifact2 = Stub() {
                getName() >> "name"
                getExtension() >> "ext1"
                getType() >> "type"
                getClassifier() >> "classified"
                getFile() >> testDirectoryProvider.createFile('artifact2')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ScalarTypesInManagedModelIntegrationTest.groovy

                    void setBigDecimalProperty(BigDecimal value)
    
                    String getStringProperty()
                    void setStringProperty(String value)
    
                    File getFile()
                    void setFile(File file)
    
                    boolean isFlag()
                    void setFlag(boolean flag)
    
                    boolean getOtherFlag()
                    void setOtherFlag(boolean flag)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

                if (conflictingProject != null) {
                    throw new DuplicateProjectException(
                            projectId,
                            conflictingProject.getFile(),
                            project.getFile(),
                            "Project '" + projectId + "' is duplicated in the reactor");
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarFileTree.java

            }
    
            @Override
            public InputStream open() {
                if (read) {
                    getFile();
                    return GFileUtils.openInputStream(getFile());
                } else if (tar.getCurrentEntry() != entry) {
                    throw new UnsupportedOperationException(String.format("The contents of %s have already been read.", this));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                ArtifactRepository repository) {
            if (metadata != null && metadata.getFile() != null && metadata.getFile().isFile()) {
                try {
                    Map<String, ?> options = Collections.singletonMap(MetadataReader.IS_STRICT, Boolean.FALSE);
    
                    Metadata repoMetadata = metadataReader.read(metadata.getFile(), options);
    
                    mergeMetadata(versions, repoMetadata, repository);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

                }
                if (link.startsWith("/")) {
                    redirect = ftpInfo.toUrl(file.getLink());
                } else if (link.startsWith("../")) {
                    redirect = ftpInfo.toChildUrl(file.getLink());
                } else {
                    redirect = ftpInfo.toChildUrl("../" + file.getLink());
                }
                if (!uri.equals(redirect)) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

            return pomRepositories;
        }
    
        private boolean hasFile(Artifact artifact) {
            return artifact != null
                    && artifact.getFile() != null
                    && artifact.getFile().exists();
        }
    
        private List<ArtifactRepository> aggregateRepositories(
                List<ArtifactRepository> requestRepositories, List<ArtifactRepository> pomRepositories) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftBinary.java

                            }
                            moduleMap.getPublicHeaderPaths().add(artifact.getFile().getAbsolutePath());
                        }
                        // TODO Change this to only add SWIFT_API artifacts and instead parse modulemaps to discover compile task inputs
                        result.add(artifact.getFile());
                    }
    
                    if (!moduleMaps.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top