Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/BooleanQuestionPromptEventTest.groovy

            expect:
            def result = event.convert(input)
            result.response == null
            result.newPrompt == "Please enter 'yes' or 'no' (default: 'yes'): "
    
            where:
            input  | _
            'bla'  | ''
            'nope' | ''
            'yep'  | ''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/IntQuestionPromptEventTest.groovy

            expect:
            def result = event.convert(input)
            result.response == null
            result.newPrompt == "Please enter an integer value (min: 2, default: 4): "
    
            where:
            input | _
            'bla' | ''
            '1s'  | ''
            '1 2' | ''
            Long.MAX_VALUE.toString() | ''
        }
    
        def "rejects input that is below minimum"() {
            def event = new IntQuestionPromptEvent(123, "question?", 2, 4)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

        %source:3 = tf_executor.NextIteration.Source : tensor<*xi32>
        %island:2 = tf_executor.island {
          %const = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<*xi32>
          %print = "tf.Print"(%const) { message = "bla" } : (tensor<*xi32>) -> (tensor<*xi32>)
    
          tf_executor.yield %const : tensor<*xi32>
        }
        tf_executor.NextIteration.Sink[%source#1] %island#0 : tensor<*xi32>
        tf_executor.fetch %island#0 : tensor<*xi32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/test/mockopenidserver.go

    	JwtPubKeyExtraElements = `{ "keys": [ { "kid": "fakeKey1_1", "alg": "RS256", "kty": "RSA", "n": "abc", "e": "def", "bla": "blah" },
    			{ "kid": "fakeKey1_2", "alg": "RS256", "kty": "RSA", "n": "123", "e": "456", "bla": "blah" } ] }`
    )
    
    // Wrap the original handler with a delay
    func withDelay(handler http.Handler, delay time.Duration) http.Handler {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top