Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 566 for spacer (0.32 sec)

  1. src/encoding/xml/marshal.go

    	indentedIn bool
    	putNewline bool
    	attrNS     map[string]string // map prefix -> name space
    	attrPrefix map[string]string // map name space -> prefix
    	prefixes   []string
    	tags       []Name
    	closed     bool
    	err        error
    }
    
    // createAttrPrefix finds the name space prefix attribute to use for the given name space,
    // defining a new prefix if necessary. It returns the prefix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows.go

    // this assumes the four fastcall registers were first spilled
    // to the shadow space.
    type abiDesc struct {
    	parts []abiPart
    
    	srcStackSize uintptr // stdcall/fastcall stack space tracking
    	dstStackSize uintptr // Go stack space used
    	dstSpill     uintptr // Extra stack space for argument spill slots
    	dstRegisters int     // Go ABI int argument registers used
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/MultipartBodyTest.kt

      }
    
      @Test
      fun stringEscapingIsWeird() {
        val expected =
          """
          |--AaB03x
          |Content-Disposition: form-data; name="field with spaces"; filename="filename with spaces.txt"
          |Content-Type: text/plain; charset=utf-8
          |
          |okay
          |--AaB03x
          |Content-Disposition: form-data; name="field with %22"
          |
          |"
          |--AaB03x
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/go/printer/testdata/expressions.input

    	_ = s[a:b]
    	_ = s[0:len(s)]
    	_ = s[0]<<1
    	_ = (s[0]<<1)&0xf
    	_ = s[0] << 2 | s[1] >> 4
    	_ = "foo"+s
    	_ = s+"foo"
    	_ = 'a'+'b'
    	_ = len(s)/2
    	_ = len(t0.x)/a
    
    	// spaces around expressions of different precedence or expressions containing spaces
    	_ = a + -b
    	_ = a - ^b
    	_ = a / *p
    	_ = a + b*c
    	_ = 1 + b*c
    	_ = a + 2*c
    	_ = a + c*2
    	_ = 1 + 2*3
    	_ = s[1 : 2*3]
    	_ = s[a : b-c]
    	_ = s[0:]
    	_ = s[a+b]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverTest.groovy

            assertEquals(new File(baseDir, 'bad%1'), baseDirConverter.resolve('file:bad%1'))
            assertEquals(new File(baseDir, 'white space'), baseDirConverter.resolve('file:white space'))
        }
    
        @Test public void testResolveURIWithReservedCharacters() {
            File absoluteFile = new File('white space').canonicalFile
            assertEquals(absoluteFile, baseDirConverter.resolve(absoluteFile.toURI()))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:52 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

    The project memory settings are likely not configured or are configured to an insufficient value.
    The daemon will restart for the next build, which may increase subsequent build times.
    These settings can be adjusted by setting 'org.gradle.jvmargs' in 'gradle.properties'.
    The currently configured max heap space is '512 MiB' and the configured max metaspace is 'unknown'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  7. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            "group with spaces" | "artifact"             | "version"   | "groupId (group with spaces) is not a valid Maven identifier ([A-Za-z0-9_\\-.]+)"
            "group-₦ガき∆"        | "artifact"            | "version"   | "groupId (group-₦ガき∆) is not a valid Maven identifier ([A-Za-z0-9_\\-.]+)"
            "group"             | "artifact with spaces" | "version"   | "artifactId (artifact with spaces) is not a valid Maven identifier ([A-Za-z0-9_\\-.]+)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. src/encoding/xml/xml_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if a.XMLName.Space != structSpace {
    		t.Errorf("overidding with empty namespace: unmarshaling, got %s, want %s\n", a.XMLName.Space, structSpace)
    	}
    	if len(a.C.XMLName.Space) != 0 {
    		t.Fatalf("overidding with empty namespace: unmarshaling, got %s, want empty\n", a.C.XMLName.Space)
    	}
    
    	var b []byte
    	b, err = Marshal(&a)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/mime/encodedword.go

    // one byte of non-whitespace.
    func hasNonWhitespace(s string) bool {
    	for _, b := range s {
    		switch b {
    		// Encoded-words can only be separated by linear white spaces which does
    		// not include vertical tabs (\v).
    		case ' ', '\t', '\n', '\r':
    		default:
    			return true
    		}
    	}
    	return false
    }
    
    // qDecode decodes a Q encoded string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/net/mail/message.go

    // isMultibyte reports whether r is a multi-byte UTF-8 character
    // as supported by RFC 6532.
    func isMultibyte(r rune) bool {
    	return r >= utf8.RuneSelf
    }
    
    // isWSP reports whether r is a WSP (white space).
    // WSP is a space or horizontal tab (RFC 5234 Appendix B).
    func isWSP(r rune) bool {
    	return r == ' ' || r == '\t'
    }
    
    // isDtext reports whether r is an RFC 5322 dtext character.
    func isDtext(r rune) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top