Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Filtering (0.34 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[filtering_files]]
    == Filtering files
    
    Filtering files in Gradle involves selectively including or excluding files based on certain criteria.
    
    === Using `CopySpec.include()` and `CopySpec.exclude()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Sets.java

        if (unfiltered instanceof SortedSet) {
          return filter((SortedSet<E>) unfiltered, predicate);
        }
        if (unfiltered instanceof FilteredSet) {
          // Support clear(), removeAll(), and retainAll() when filtering a filtered
          // collection.
          FilteredSet<E> filtered = (FilteredSet<E>) unfiltered;
          Predicate<E> combinedPredicate = Predicates.and(filtered.predicate, predicate);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertPathSuffixEquals("main", pom.getValue("build/resources[1]/targetPath"));
            assertEquals(Boolean.TRUE, pom.getValue("build/resources[1]/filtering"));
            assertEquals(1, ((List<?>) pom.getValue("build/resources[1]/includes")).size());
            assertPathSuffixEquals("main.included", pom.getValue("build/resources[1]/includes[1]"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// A resource might depend on node labels for topology filtering.
    		// A new or updated node may make pods schedulable.
    		//
    		// A note about UpdateNodeTaint event:
    		// NodeAdd QueueingHint isn't always called because of the internal feature called preCheck.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Multimaps.java

            : new FilteredEntrySetMultimap<K, V>(checkNotNull(unfiltered), entryPredicate);
      }
    
      /**
       * Support removal operations when filtering a filtered multimap. Since a filtered multimap has
       * iterators that don't support remove, passing one to the FilteredEntryMultimap constructor would
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        resource.getDirectory(),
                        null,
                        resource);
    
                validateBoolean(
                        prefix,
                        "filtering",
                        problems,
                        errOn30,
                        Version.V20,
                        resource.getFiltering(),
                        resource.getDirectory(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                        resource.getDirectory(),
                        null,
                        resource);
    
                validateBoolean(
                        prefix,
                        "filtering",
                        problems,
                        errOn30,
                        Version.V20,
                        resource.getFiltering(),
                        resource.getDirectory(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[deprecate_filtered_configuration_file_and_filecollection_methods]]
    ==== Filtered Configuration `file` and `fileCollection` methods are deprecated
    
    In an ongoing effort to simplify the Gradle API, the following methods that support filtering based on declared dependencies have been deprecated:
    
    On link:{javadocPath}/org/gradle/api/artifacts/Configuration.html--[Configuration]:
    
    - `files(Dependency...)`
    - `files(Spec)`
    - `files(Closure)`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    	name      string
    	chainType knftables.BaseChainType
    	hook      knftables.BaseChainHook
    	priority  knftables.BaseChainPriority
    }
    
    var nftablesBaseChains = []nftablesBaseChain{
    	// We want our filtering rules to operate on pre-DNAT dest IPs, so our filter
    	// chains have to run before DNAT.
    	{filterPreroutingChain, knftables.FilterType, knftables.PreroutingHook, knftables.DNATPriority + "-10"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    	// individual http services in that port
    	if cur, exists := listenerMap[listenerMapKey]; exists {
    		currentListenerEntry = cur
    		// NOTE: This is not a conflict. This is simply filtering the
    		// services for a given listener explicitly.
    		// When the user declares their own ports in Sidecar.egress
    		// with some specific services on those ports, we should not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top