Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for TestFilter (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    				if !meet && CompilationResults[i].Error != nil {
    					t.Errorf("Unexpected err '%v' for expression '%s'", CompilationResults[i].Error, validations[i].GetExpression())
    				}
    			}
    		})
    	}
    }
    
    func TestFilter(t *testing.T) {
    	configMapParams := &corev1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "foo",
    		},
    		Data: map[string]string{
    			"fakeString": "fake",
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.TestFilter.getExcludePatterns()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestFilter.java:0)
    Method <org.gradle.api.tasks.testing.TestFilter.getIncludePatterns()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestFilter.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    
    For more details and examples of declaring filters in the build script, please see the link:{javadocPath}/org/gradle/api/tasks/testing/TestFilter.html[TestFilter] reference.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

        }
    
        /**
         * Executes the action against the {@link #getFilter()}.
         *
         * @param action configuration of the test filter
         * @since 1.10
         */
        public void filter(Action<TestFilter> action) {
            action.execute(getFilter());
        }
    
        /**
         * Sets the testExecuter property.
         *
         * @since 4.2
         */
        @UsedByScanPlugin("test-distribution, test-retry")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/RestFilter.java

     * <p>
     * If the filter init parameter maxPutSize is set to a positive integer, then
     * only puts of known size less than maxPutSize will be accepted.
     * </p>
     *
     */
    // Copied from org.mortbay.servlet.RestFilter
    public class RestFilter implements Filter {
        private static final String HTTP_METHOD_PUT = "PUT";
        private static final String HTTP_METHOD_GET = "GET";
        private static final String HTTP_METHOD_DELETE = "DELETE";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpBuildCacheServer.groovy

                }
            }
            webapp.addFilter(new FilterHolder(filter), "/*", EnumSet.of(DispatcherType.REQUEST))
    
            // TODO: Find Jetty 9 idiomatic way to get rid of this filter
            this.webapp.addFilter(RestFilter, "/*", EnumSet.of(DispatcherType.REQUEST))
        }
    
        interface Responder {
            /**
             * Return false to prevent further processing.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top