Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for filterSpec (1.25 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCache.java

            return get(id, classPath, parent, filterSpec, null);
        }
    
        @Override
        public ClassLoader get(ClassLoaderId id, ClassPath classPath, @Nullable ClassLoader parent, @Nullable FilteringClassLoader.Spec filterSpec, @Nullable HashCode implementationHash) {
            return doGet(id, classPath, parent, filterSpec, implementationHash, this::createClassLoader);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

        @Rule TestNameTestDirectoryProvider dir = new TestNameTestDirectoryProvider(getClass())
    
        def processor = Mock(TestResultProcessor)
        def filterSpec = Spy(new TestFilterSpec([] as Set, [] as Set, [] as Set))
        def spec = Spy(new TestNGSpec(
            filterSpec,
            "Gradle suite", "Gradle test", null, -1, 1, false, null,
            [] as Set, [] as Set, [] as Set,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

            private final Set<LanguageSourceSet> inputs;
            private final Spec<LanguageSourceSet> filterSpec;
            private final Transformer<FileCollection, LanguageSourceSet> transformer;
    
            public LanguageSourceSetCollectionAdapter(String displayName, Set<LanguageSourceSet> inputs, Spec<LanguageSourceSet> filterSpec, Transformer<FileCollection, LanguageSourceSet> transformer) {
                this.displayName = displayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

    
    /**
     * See [Configuration.filter].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().filter(filterSpec"), level = DeprecationLevel.HIDDEN)
    fun <T : Configuration> NamedDomainObjectProvider<T>.filter(filterSpec: Spec<File>) =
        get().filter(filterSpec)
    
    
    /**
     * See [Configuration.isEmpty].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

            return filter(Specs.convertClosureToSpec(filterClosure));
        }
    
        @Override
        public FileCollectionInternal filter(final Spec<? super File> filterSpec) {
            return new FilteredFileCollection(this, filterSpec);
        }
    
        /**
         * This is final - override {@link #visitContents(FileCollectionStructureVisitor)} instead to provide the contents.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. src/go/ast/filter.go

    	case *MapType:
    		b1 := filterType(t.Key, f, export)
    		b2 := filterType(t.Value, f, export)
    		return b1 || b2
    	case *ChanType:
    		return filterType(t.Value, f, export)
    	}
    	return false
    }
    
    func filterSpec(spec Spec, f Filter, export bool) bool {
    	switch s := spec.(type) {
    	case *ValueSpec:
    		s.Names = filterIdentList(s.Names, f)
    		s.Values = filterExprList(s.Values, f, export)
    		if len(s.Names) > 0 {
    			if export {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

                    // TODO - when the collection is static then we should serialize the current contents of the collection
                    elements.add(FilteredFileCollectionSpec(fileCollection.collection, fileCollection.filterSpec))
                    false
                }
    
                is ProviderBackedFileCollection -> {
                    // Guard against file collection created from a task provider such as `layout.files(compileJava)`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top