Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,957 for Filler (0.26 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactory.java

            return FlattenOperationResult.of(specs.stream().filter(e -> !ignoreSpec.test(e)).collect(toSet()));
        }
    
        private Stream<ExcludeSpec> maybeFilter(Set<ExcludeSpec> specs, Predicate<ExcludeSpec> ignoreSpec, boolean filtered) {
            Stream<ExcludeSpec> stream = specs.stream();
            if (filtered) {
                stream = stream.filter(e -> !ignoreSpec.test(e));
            }
            return stream;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/helpers_test.go

    		add chain ip6 kube-proxy filter-forward { type filter hook forward priority -110 ; }
    		add chain ip6 kube-proxy filter-input { type filter hook input priority -110 ; }
    		add chain ip6 kube-proxy filter-output { type filter hook output priority -110 ; }
    		add chain ip6 kube-proxy filter-output-post-dnat { type filter hook output priority -90 ; }
    		add chain ip6 kube-proxy filter-prerouting { type filter hook prerouting priority -110 ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensions.kt

     *
     * ```
     * filter(StripJavaComments::class)
     * filter(com.mycompany.project.CustomFilter::class)
     * filter(HeadFilter::class, "lines" to 25, "skip" to 2)
     * filter(ReplaceTokens::class, "tokens" to mapOf("copyright" to "2009", "version" to "2.3.1"))
     * ```
     *
     * @param filterType type of the filter to add
     * @param properties map of filter properties
     * @return this
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. pkg/test/framework/label/labels_test.go

    func TestLabels(t *testing.T) {
    	tests := []struct {
    		filter   string
    		labels   Set
    		expected bool
    		err      bool
    	}{
    		{filter: "", labels: nil, expected: true},
    		{filter: "", labels: NewSet(Postsubmit), expected: true},
    		{filter: "", labels: NewSet(Postsubmit, CustomSetup), expected: true},
    		{filter: "$requires.kube", labels: NewSet(Postsubmit, CustomSetup), err: true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 18 17:08:05 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilterTest.java

            ScopeArtifactFilter filter = new ScopeArtifactFilter(Artifact.SCOPE_TEST);
    
            assertTrue(filter.include(newArtifact(Artifact.SCOPE_COMPILE)));
            assertTrue(filter.include(newArtifact(Artifact.SCOPE_SYSTEM)));
            assertTrue(filter.include(newArtifact(Artifact.SCOPE_PROVIDED)));
            assertTrue(filter.include(newArtifact(Artifact.SCOPE_RUNTIME)));
            assertTrue(filter.include(newArtifact(Artifact.SCOPE_TEST)));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        This is intended to be used for TF1 (graph mode) tests.
    
        Args:
          input_shape: Shape of the input tensor.
          filter_shape: Shape of the filter.
          use_variable_for_filter: Setting this to `True` makes the filter for the
            conv operation a `tf.Variable`.
    
        Returns:
          in_placeholder: Input tensor placeholder.
          output_tensor: The resulting tensor of the convolution operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  9. src/main/resources/suggest_indices/suggest_analyzer.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  10. src/net/http/httptrace/trace.go

    	// If net.Dialer.DualStack (IPv6 "Happy Eyeballs") support is
    	// enabled, this may be called multiple times.
    	ConnectStart func(network, addr string)
    
    	// ConnectDone is called when a new connection's Dial
    	// completes. The provided err indicates whether the
    	// connection completed successfully.
    	// If net.Dialer.DualStack ("Happy Eyeballs") support is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top