Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for BLA (0.02 sec)

  1. 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)
  2. src/go/printer/testdata/statements.input

    	case 3:
    		x = 0
    		/* indented comment
    		   aligned
    		   aligned
    		*/
    		// bla
    		/* and more */
    	case 4:
    		x = 0
    	/* not indented comment
    	   aligned
    	   aligned
    	*/
    	// bla
    	/* and more */
    	case 5:
    	}
    }
    
    
    // Formatting of selected select statements.
    func _() {
    	select {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 8.3K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/audit_test.go

    	simpleFooJSON, _ := runtime.Encode(testCodec, simpleFoo)
    
    	simpleCPrime := &genericapitesting.Simple{
    		ObjectMeta: metav1.ObjectMeta{Name: "c", Namespace: "other"},
    		Other:      "bla",
    	}
    	simpleCPrimeJSON, _ := runtime.Encode(testCodec, simpleCPrime)
    	userAgent := "audit-test"
    
    	// event checks
    	noRequestBody := func(i int) eventCheck {
    		return func(events []*auditinternal.Event) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/go/printer/testdata/statements.golden

    	case 3:
    		x = 0
    		/* indented comment
    		   aligned
    		   aligned
    		*/
    		// bla
    		/* and more */
    	case 4:
    		x = 0
    	/* not indented comment
    	   aligned
    	   aligned
    	*/
    	// bla
    	/* and more */
    	case 5:
    	}
    }
    
    // Formatting of selected select statements.
    func _() {
    	select {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 12 18:18:12 UTC 2014
    - 8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/DfsTest.java

            CIFSContext context = getContext();
            context = withTestNTLMCredentials(context);
    
            final String hostname = "foo";
            final String root = "dfs";
            final String path = "\\bla\\";
    
            DfsImpl dfs = new DfsImpl(context);
    
            DfsReferralDataImpl dr = new DfsReferralDataImpl() {
    
                @Override
                public int getPathConsumed () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 13.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top