Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 159 for spacer (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    gradle test --tests org.gradle.SomeTestClass
    
    # specific class and method
    gradle test --tests org.gradle.SomeTestClass.someSpecificMethod
    
    # method name containing spaces
    gradle test --tests "org.gradle.SomeTestClass.some method containing spaces"
    
    # all classes at specific package (recursively)
    gradle test --tests 'all.in.specific.package*'
    
    # specific method at specific package (recursively)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string
    	// that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and
    	// the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    	{"parens: $ in paren", "{{($).X}}", "x", tVal, true},
    	{"parens: $.GetU in paren", "{{($.GetU).V}}", "v", tVal, true},
    	{"parens: $ in paren in pipe", "{{($ | echo).X}}", "x", tVal, true},
    	{"parens: spaces and args", `{{(makemap "up" "down" "left" "right").left}}`, "right", tVal, true},
    
    	// If.
    	{"if true", "{{if true}}TRUE{{end}}", "TRUE", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
      // +optional
      optional string generateName = 2;
    
      // Namespace defines the space within which each name must be unique. An empty namespace is
      // equivalent to the "default" namespace, but "default" is the canonical representation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
      // +optional
      optional string generateName = 2;
    
      // Namespace defines the space within which each name must be unique. An empty namespace is
      // equivalent to the "default" namespace, but "default" is the canonical representation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string
    	// that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and
    	// the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    		if err = fexp.Close(); err != nil {
    			fatalf("%s", err)
    		}
    	}
    
    	init := gccgoInit.String()
    	if init != "" {
    		// The init function does nothing but simple
    		// assignments, so it won't use much stack space, so
    		// it's OK to not split the stack. Splitting the stack
    		// can run into a bug in clang (as of 2018-11-09):
    		// this is a leaf function, and when clang sees a leaf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/validation/validation_test.go

    		expectingError: false,
    	}, {
    		name:           "single wildcard inside the path should fail",
    		path:           "/healthz/*/foo",
    		expectingError: true,
    	}, {
    		name:           "white-space in the path should fail",
    		path:           "/healthz/foo bar",
    		expectingError: true,
    	}, {
    		name:           "wildcard plus plain path should fail",
    		path:           "/health*",
    		expectingError: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm.s

    // instructions for each rule, to guarantee we cover the same space.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT	foo(SB), DUPOK|NOSPLIT, $0
    
    // ADD
    //
    //	LTYPE1 cond imsr ',' spreg ',' reg
    //	{
    //		outcode($1, $2, &$3, $5, &$7);
    //	}
    // Cover some operand space here too.
    	ADD	$1, R2, R3
    	ADD	R1<<R2, R3, R4
    	ADD	R1>>R2, R3, R4
    	ADD	R1@>R2, R3, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    		if len(loggedLine) == 0 {
    			t.Fatalf("%s: no keylog line was produced", side)
    		}
    		const expectedLen = 13 /* "CLIENT_RANDOM" */ +
    			1 /* space */ +
    			32*2 /* hex client nonce */ +
    			1 /* space */ +
    			48*2 /* hex master secret */ +
    			1 /* new line */
    		if len(loggedLine) != expectedLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top