Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for BLA (0.02 sec)

  1. tests/test_jsonable_encoder.py

        }
        assert jsonable_encoder(model, include={"foo"}) == {"foo": "foo"}
        assert jsonable_encoder(model, exclude={"bla"}) == {"foo": "foo", "bar": "bar"}
        assert jsonable_encoder(model, include={}) == {}
        assert jsonable_encoder(model, exclude={}) == {
            "foo": "foo",
            "bar": "bar",
            "bla": "bla",
        }
    
    
    @needs_pydanticv1
    def test_custom_encoders():
        class safe_datetime(datetime):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/workload-bad.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-{{ .To.ServiceName }}-bad
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
          "foo": "bla"
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 392 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

            failureCauseContains """
      foo.bar { ... } @ build.gradle line 5, column 17
        subject:
          - foo.bar Object [*]
    
      foo.bla { ... } @ build.gradle line 8, column 17
        subject:
          - foo.bla Object [*]
    """
        }
    
        def "suggestions are provided for unbound by-path references"() {
            given:
            buildScript """
                class MyPlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. security/pkg/pki/util/generate_csr_test.go

    	}
    }
    
    func TestGenCSRTemplateForDualUse(t *testing.T) {
    	tt := map[string]struct {
    		host       string
    		expectedCN string
    	}{
    		"Single host": {
    			host:       "bla.com",
    			expectedCN: "bla.com",
    		},
    		"Multiple hosts": {
    			host:       "a.org,b.net,c.groups",
    			expectedCN: "a.org",
    		},
    	}
    
    	for _, tc := range tt {
    		opts := CertOptions{
    			Host:       tc.host,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 09:40:13 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/SelectOptionPromptEventTest.groovy

            expect:
            def result = event.convert(input)
            result.response == null
            result.newPrompt == "Please enter a value between 1 and 4: "
    
            where:
            input | _
            'bla' | ''
            '1s'  | ''
            '0'   | ''
            '5'   | ''
            '-1'  | ''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/YesNoQuestionPromptEventTest.groovy

            expect:
            def result = event.convert(input)
            result.response == null
            result.newPrompt == "Please enter 'yes' or 'no': "
    
            where:
            input   | _
            ''      | _
            'bla'   | _
            'y'     | _
            'Y'     | _
            'ye'    | _
            'YES'   | _
            'n'     | _
            'N'     | _
            'NO'    | _
            'true'  | _
            'false' | _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/go/doc/synopsis_test.go

    	{"foo.", 4, "foo."},
    	{"foo.bar", 7, "foo.bar"},
    	{"  foo.  ", 6, "foo."},
    	{"  foo\t  bar.\n", 12, "foo bar."},
    	{"  foo\t  bar.\n", 12, "foo bar."},
    	{"a  b\n\nc\r\rd\t\t", 12, "a b"},
    	{"a  b\n\nc\r\rd\t\t  . BLA", 15, "a b"},
    	{"Package poems by T.S.Eliot. To rhyme...", 27, "Package poems by T.S.Eliot."},
    	{"Package poems by T. S. Eliot. To rhyme...", 29, "Package poems by T. S. Eliot."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authorization/path/path_test.go

    		{"foo slash", []string{"/foo/"}, []string{"/foo/"}, nil, []string{"/", "", "/bar", "/foo", "/fooooo"}, false},
    		{"foo slash star", []string{"/foo/*"}, []string{"/foo/", "/foo/bar/bla"}, nil, []string{"/", "", "/foo", "/bar", "/fooooo"}, false},
    		{"foo bar", []string{"/foo", "/bar"}, []string{"/foo", "/bar"}, nil, []string{"/", "", "/foo/", "/bar/", "/fooooo"}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            outputs.snapshot { run language.compileTaskName }
    
            when:
            source "class A { static final int x = 2; /* change */ void bla() { /* avoid flakiness */ } }"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses 'A', 'B'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  10. samples/extauthz/README.md

        ```console
        $ kubectl exec -it $(kubectl get pod -l app=sleep -o jsonpath={.items..metadata.name}) -c sleep -- curl -v ext-authz:8000 -H "x-ext-authz: bla"
            > GET / HTTP/1.1
            > Host: ext-authz-server:8000
            > User-Agent: curl/7.73.0-DEV
            > Accept: */*
            > x-ext-authz: allowx
            >
            * Mark bundle as not supporting multiuse
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top