Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for BLA (0.04 sec)

  1. tests/integration/security/fuzz/fuzz_test.go

    )
    
    var (
    	// Known unsupported path parameter ("/bla;foo") normalization for Tomcat.
    	dotdotPwnIgnoreTomcat = []string{
    		"/../private/secret.html;index.html <- VULNERABLE!",
    		"/../private/secret.html;index.htm <- VULNERABLE!",
    		"/..%5Cprivate%5Csecret.html;index.html <- VULNERABLE!",
    		"/..%5Cprivate%5Csecret.html;index.htm <- VULNERABLE!",
    	}
    	// Known unsupported path parameter ("/bla;foo") normalization for Tomcat.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                // without kotlin-stdlib-jdk8 we get:
                // > Retrieving groups by name is not supported on this platform.
    
                val regex = Regex("(?<bla>.*)")
                val groups = regex.matchEntire("abc")?.groups
                println("*" + groups?.get("bla")?.value + "*")
    
                """
            )
    
            assertThat(
                build("help").output,
                containsString("*abc*")
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    			bh = int(inst.Args[2].(Imm))
    		}
    
    		if bo&0x14 == 0x14 {
    			if bo == 0x14 && bi == Cond0LT { // preferred form of unconditional branch
    				// Likewise, avoid printing fake b/ba/bl/bla
    				if opName != "bc" && opName != "bca" && opName != "bcl" && opName != "bcla" {
    					startArg = 2
    				}
    			}
    		} else if bo&0x04 == 0 { // ctr is decremented
    			if opName != "bcctr" && opName != "bcctrl" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. src/text/template/exec_test.go

    	NilOKFunc:                 func(s *int) bool { return s == nil },
    	ErrFunc:                   func() (string, error) { return "bla", nil },
    	PanicFunc:                 func() string { panic("test panic") },
    	TooFewReturnCountFunc:     func() {},
    	TooManyReturnCountFunc:    func() (string, error, int) { return "", nil, 0 },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/html/template/exec_test.go

    	NilOKFunc:                 func(s *int) bool { return s == nil },
    	ErrFunc:                   func() (string, error) { return "bla", nil },
    	PanicFunc:                 func() string { panic("test panic") },
    	Tmpl:                      Must(New("x").Parse("test template")), // "x" is the value of .X
    }
    
    var tSliceOfNil = []*T{nil}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		expectedErrors bool
    	}{
    		{name: "valid socket URL", criSocket: kubeadmapiv1.DefaultContainerRuntimeURLScheme + "://" + "/some/path", expectedErrors: false},
    		{name: "unsupported URL scheme", criSocket: "bla:///some/path", expectedErrors: true},
    		{name: "missing URL scheme", criSocket: "/some/path", expectedErrors: true},
    		{name: "unparseable URL", criSocket: ":::", expectedErrors: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  7. tests/integration/security/authz_test.go

    									if to.Config().DeployAsVM {
    										continue
    									}
    									for _, instance := range to.Instances() {
    										err := instance.UpdateWorkloadLabel(map[string]string{"foo": "bla"}, nil)
    										if err != nil {
    											t.Fatal(err)
    										}
    									}
    								}
    								newAuthzTest().
    									From(from).
    									To(to).
    									Allow(c.allow).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route_test.go

    								MatchType: &networking.StringMatch_Exact{
    									Exact: "Bar",
    								},
    							},
    						},
    						WithoutHeaders: map[string]*networking.StringMatch{
    							"@request.auth.claims.Bla": {
    								MatchType: &networking.StringMatch_Exact{
    									Exact: "Bar",
    								},
    							},
    						},
    					},
    				},
    				Redirect: &networking.HTTPRedirect{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
Back to top