Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for gotFiles (0.48 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

                        ${directorySensitivity == DirectorySensitivity.IGNORE_DIRECTORIES ? "@${IgnoreEmptyDirectories.class.simpleName}" : ''}
                        ConfigurableFileCollection getFiles()
                    }
    
                    @InputArtifact
                    ${directorySensitivity == DirectorySensitivity.IGNORE_DIRECTORIES ? "@${IgnoreEmptyDirectories.class.simpleName}" : ''}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

        private val source: FileCollectionInternal
    ) : LocalFileDependencyMetadata {
        override fun getComponentId(): ComponentIdentifier? {
            return compId
        }
    
        override fun getFiles(): FileCollectionInternal {
            return source
        }
    
        override fun getSource(): FileCollectionDependency {
            throw UnsupportedOperationException("Should not be called")
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter_test.go

    		t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler)
    	}
    
    	// Get list of packages in stdlib. Filter out test-only packages with {{if .GoFiles}} check.
    	var stderr bytes.Buffer
    	cmd := exec.Command("go", "list", "-f", "{{if .GoFiles}}{{.ImportPath}}{{end}}", "std")
    	cmd.Stderr = &stderr
    	out, err := cmd.Output()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

                        ${lineEndingNormalization == LineEndingSensitivity.NORMALIZE_LINE_ENDINGS ? "@${NormalizeLineEndings.class.simpleName}" : ''}
                        ConfigurableFileCollection getFiles()
                    }
    
                    @InputArtifact
                    ${lineEndingNormalization == LineEndingSensitivity.NORMALIZE_LINE_ENDINGS ? "@${NormalizeLineEndings.class.simpleName}" : ''}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/clean/clean.go

    	if p.Name != "main" {
    		// Record which files are not in package main.
    		// The others are.
    		keep := func(list []string) {
    			for _, f := range list {
    				packageFile[f] = true
    			}
    		}
    		keep(p.GoFiles)
    		keep(p.CgoFiles)
    		keep(p.TestGoFiles)
    		keep(p.XTestGoFiles)
    	}
    
    	_, elem := filepath.Split(p.Dir)
    	var allRemove []string
    
    	// Remove dir-named executable only if this is package main.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

                    config.componentFilter(spec(JavaGradlePluginPlugin::excludeGradleApi))
                );
                return project.getObjects().fileCollection().from(
                    sourceSet.getOutput(),
                    view.getFiles().getElements()
                );
            };
        }
    
        private static boolean excludeGradleApi(ComponentIdentifier componentId) {
            if (componentId instanceof OpaqueComponentIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/stdlib_test.go

    			return nil, nil // no *.go files, not an error
    		}
    		return nil, err
    	}
    	if excluded[pkg.ImportPath] {
    		return nil, nil
    	}
    	var filenames []string
    	for _, name := range pkg.GoFiles {
    		filenames = append(filenames, filepath.Join(pkg.Dir, name))
    	}
    	if includeTest {
    		for _, name := range pkg.TestGoFiles {
    			filenames = append(filenames, filepath.Join(pkg.Dir, name))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/read.go

    			directives = &p.XTestDirectives
    		case isTest:
    			fileList = &p.TestGoFiles
    			importMap = testImportPos
    			embedMap = testEmbedPos
    			directives = &p.TestDirectives
    		default:
    			fileList = &p.GoFiles
    			importMap = importPos
    			embedMap = embedPos
    			directives = &p.Directives
    		}
    		*fileList = append(*fileList, name)
    		if importMap != nil {
    			for _, imp := range imports {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

        }
    
        @Override
        public Class<?> publicType() {
            return ConfigurableFileCollection.class;
        }
    
        @Override
        public Object unpackState() {
            return getFiles();
        }
    
        @Override
        public void finalizeValue() {
            if (valueState.shouldFinalize(this::displayNameForThisCollection, null)) {
                finalizeNow();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top