Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for testFilter (0.33 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. test/fixedbugs/issue15329.go

    	// Invocation via method expression.
    	check(unsafe.Pointer(reflect.Value.Pointer(testMeth(1))), unsafe.Pointer(reflect.Value.Pointer(testMeth(2))))
    
    	// Invocation via interface.
    	check(unsafe.Pointer(testInter(1).Pointer()), unsafe.Pointer(testInter(2).Pointer()))
    
    	// Invocation via method value.
    	check(unsafe.Pointer(testFunc(1)()), unsafe.Pointer(testFunc(2)()))
    }
    
    func check(p, q unsafe.Pointer) {
    	a, b := *(*int)(p), *(*int)(q)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 18 14:01:22 UTC 2016
    - 2.1K bytes
    - Viewed (0)
  7. .gitignore

    pilot/pkg/kube/config
    pilot/pkg/proxy/envoy/envoy
    # lint
    lintconfig.gen.json
    .istiorc
    .istiorc.mk
    # codegen stuff
    bin/adapterlinter
    bin/protoc-gen-gogoslick*
    bin/protoc-min-version*
    bin/protoc-gen-docs*
    bin/testlinter
    bin/envvarlinter
    bin/istioctl
    *.orig
    # Avoid accidental istio.VERSION changes
    istio.VERSION
    LICENSES.txt
    # Proxy generated proxy config in integration test
    tests/integration/component/proxy/envoy.conf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. 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)
  9. pkg/test/framework/components/echo/echotest/filters_test.go

    			{
    				Name:      "naked",
    				Namespace: echo1NS,
    			},
    			{
    				Name:      "vm",
    				Namespace: echo1NS,
    			},
    		},
    	); diff != "" {
    		t.Fatal(diff)
    	}
    }
    
    func TestFilters(t *testing.T) {
    	tests := map[string]struct {
    		filter func(echo.Instances) echo.Instances
    		expect echo.Instances
    	}{
    		"SimplePodServiceAndAllSpecial": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    			if tc.rhs.Equal(types.DefaultTypeAdapter.NativeToValue(tc.lhs.Value())) != types.Bool(tc.equal) {
    				t.Errorf("expected unstructuredVal.Equals(<native type>) to return %v", tc.equal)
    			}
    		})
    	}
    }
    
    func TestLister(t *testing.T) {
    	cases := []struct {
    		name         string
    		unstructured []interface{}
    		schema       *schema.Structural
    		itemSchema   *schema.Structural
    		size         int64
    		notContains  []ref.Val
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top