Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 195 for getLine (0.17 sec)

  1. guava/src/com/google/common/util/concurrent/AggregateFuture.java

    import static com.google.common.util.concurrent.AggregateFuture.ReleaseResourcesReason.OUTPUT_FUTURE_DONE;
    import static com.google.common.util.concurrent.Futures.getDone;
    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    import static java.util.Objects.requireNonNull;
    import static java.util.logging.Level.SEVERE;
    
    import com.google.common.annotations.GwtCompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            def artifact1 = Stub(PublishArtifact)
            def variant1 = new DefaultSoftwareComponentVariant('variant1', ImmutableAttributes.EMPTY, [artifact1] as Set)
            artifact1.getFile() >> projectDir.file("artifact1")
            variant1.artifacts >> [artifact1]
            def publishableVariant1 = Stub(PublishableVariant)
            publishableVariant1.name >> "debug"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/FileLocationTest.java

            public String getDomain () {
                return null;
            }
    
    
            /**
             * {@inheritDoc}
             *
             * @see jcifs.DfsReferralData#getLink()
             */
            @Override
            public String getLink () {
                return null;
            }
    
    
            /**
             * {@inheritDoc}
             *
             * @see jcifs.DfsReferralData#getShare()
             */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidateAction.java

                return classNames;
            }
    
            private static ClassReader createClassReader(FileVisitDetails fileDetails) {
                try {
                    return new ClassReader(Files.asByteSource(fileDetails.getFile()).read());
                } catch (IOException e) {
                    throw new UncheckedIOException(e);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

            return new ModuleArtifact() {
                @Override
                String getPath() {
                    return path
                }
    
                @Override
                TestFile getFile() {
                    return file
                }
    
                @Override
                String getName() {
                    return file.name
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    		return err
    	}
    
    	// For typed lists, e.g., a PodList, API server doesn't set each item's
    	// APIVersion and Kind. We need to set it.
    	listAPIVersion := list.GetAPIVersion()
    	listKind := list.GetKind()
    	itemKind := strings.TrimSuffix(listKind, "List")
    
    	delete(list.Object, "items")
    	list.Items = make([]Unstructured, 0, len(dList.Items))
    	for _, i := range dList.Items {
    		unstruct := &Unstructured{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

                        if (annotation instanceof final PDAnnotationFileAttachment annotationFileAttachment) {
                            final PDFileSpecification fileSpec = annotationFileAttachment.getFile();
                            if (fileSpec instanceof final PDComplexFileSpecification complexFileSpec) {
                                final PDEmbeddedFile embeddedFile = getEmbeddedFile(complexFileSpec);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

                    installTask.getToolChain().set(executable.getToolChain());
                    installTask.getTargetPlatform().set(binary.getTargetPlatform());
                    installTask.getExecutableFile().set(executable.getFile());
                    installTask.getInstallDirectory().set(installation.getDirectory());
                    //TODO:HH wire binary libs via executable
                    installTask.lib(new BinaryLibs(binary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

            } else if (vf instanceof ChecksumVerificationFailure) {
                ChecksumVerificationFailure cvf = (ChecksumVerificationFailure) vf;
                String reason = "Expected a " + cvf.getKind() + " checksum of " + expected(cvf.getExpected()) + " but was " + actual(cvf.getActual());
                reportItem(reason, "checksum-mismatch", "warning");
            } else if (vf instanceof OnlyIgnoredKeys) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/plugins/GroovyBasePlugin.java

                final FileCollection groovySourceFiles = groovySource;
                sourceSet.getResources().getFilter().exclude(
                    spec(element -> groovySourceFiles.contains(element.getFile()))
                );
                sourceSet.getAllJava().source(groovySource);
                sourceSet.getAllSource().source(groovySource);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top