Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,375 for space1 (0.11 sec)

  1. src/encoding/xml/marshal_test.go

    		StartElement{Name{"", "foo"}, []Attr{
    			{Name{"space1", "a"}, "space1 value"},
    			{Name{"space2", "b"}, "space2 value"},
    		}},
    	},
    	want: `<foo xmlns:_xmlns="xmlns" _xmlns:x="space1"><foo _xmlns:x="space2"><foo xmlns:space1="space1" space1:a="space1 value" xmlns:space2="space2" space2:b="space2 value"></foo></foo><foo xmlns:space1="space1" space1:a="space1 value" xmlns:space2="space2" space2:b="space2 value">`,
    }, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/cluster/cluster_test.go

    			&v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: "in-namespace1",
    				},
    			},
    			&config2.BugReportConfig{
    				Include: []*config2.SelectionSpec{
    					{
    						Namespaces: []string{"*space1"},
    					},
    				},
    				Exclude: []*config2.SelectionSpec{
    					{
    						Namespaces: []string{"ex*"},
    					},
    				},
    			},
    			false,
    		},
    		{
    			"tested namespace skip",
    			&v1.Pod{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/util/documentation.go

    // - Beginning and trailing space characters (including empty lines), are stripped from the output.
    // - Consecutive non-empty lines of text are joined with spaces to form paragraphs.
    // - Paragraphs are blocks of text divided by one or more empty lines or lines consisting only of "space" characters.
    // - Paragraphs are spaced by precisely one empty line in the output.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  4. operator/pkg/object/testdata/well-formed-with-space.yaml

    # there are some spaces at the end
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 182 bytes
    - Viewed (0)
  5. test/typeparam/shape1.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 855 bytes
    - Viewed (0)
  6. test/typeparam/shape1.out

    Keith Randall <******@****.***> 1627678827 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 31 17:03:07 UTC 2021
    - 10 bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/net/PercentEscaperTest.java

        assertEquals("string with spaces", spaceEscaper.escape("string with spaces"));
      }
    
      /** Tests that if we add extra 'safe' characters they remain unescaped */
      public void testCustomEscaper() {
        UnicodeEscaper e = new PercentEscaper("+*/-", false);
        for (char c = 0; c < 128; c++) {
          if ((c >= '0' && c <= '9')
              || (c >= 'a' && c <= 'z')
              || (c >= 'A' && c <= 'Z')
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  8. src/fmt/doc.go

    the input. Unless the run of spaces in the format string
    appears adjacent to a newline, the run must consume at least
    one space from the input or find the end of the input.
    
    The handling of spaces and newlines differs from that of C's
    scanf family: in C, newlines are treated as any other space,
    and it is never an error when a run of spaces in the format
    string finds no spaces to consume in the input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/net/PercentEscaperTest.java

        assertEquals("string with spaces", spaceEscaper.escape("string with spaces"));
      }
    
      /** Tests that if we add extra 'safe' characters they remain unescaped */
      public void testCustomEscaper() {
        UnicodeEscaper e = new PercentEscaper("+*/-", false);
        for (char c = 0; c < 128; c++) {
          if ((c >= '0' && c <= '9')
              || (c >= 'a' && c <= 'z')
              || (c >= 'A' && c <= 'Z')
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  10. src/text/template/parse/lex.go

    	"with":     itemWith,
    }
    
    const eof = -1
    
    // Trimming spaces.
    // If the action begins "{{- " rather than "{{", then all space/tab/newlines
    // preceding the action are trimmed; conversely if it ends " -}}" the
    // leading spaces are trimmed. This is done entirely in the lexer; the
    // parser never sees it happen. We require an ASCII space (' ', \t, \r, \n)
    // to be present to avoid ambiguity with things like "{{-3}}". It reads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
Back to top