Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 470 for spacer (0.17 sec)

  1. src/encoding/json/indent.go

    // any indentation, to make it easier to embed inside other formatted JSON data.
    // Although leading space characters (space, tab, carriage return, newline)
    // at the beginning of src are dropped, trailing space characters
    // at the end of src are preserved and copied to dst.
    // For example, if src has no trailing spaces, neither will dst;
    // if src ends in a trailing newline, so will dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestNameTestDirectoryProvider.java

            super(root, klass);
        }
    
        private static String determineTestDirectoryName(Class<?> klass) {
            // NOTE: the space in the directory name is intentional to shake out problems with paths that contain spaces
            // NOTE: and so is the "s with circumflex" character (U+015D), to shake out problems with non-ASCII folder names
            return shouldUseNonAsciiPath(klass)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/net/textproto/textproto.go

    	}
    	return id, nil
    }
    
    // TrimString returns s without leading and trailing ASCII space.
    func TrimString(s string) string {
    	for len(s) > 0 && isASCIISpace(s[0]) {
    		s = s[1:]
    	}
    	for len(s) > 0 && isASCIISpace(s[len(s)-1]) {
    		s = s[:len(s)-1]
    	}
    	return s
    }
    
    // TrimBytes returns b without leading and trailing ASCII space.
    func TrimBytes(b []byte) []byte {
    	for len(b) > 0 && isASCIISpace(b[0]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/log/slog/text_handler.go

    	"encoding"
    	"fmt"
    	"io"
    	"reflect"
    	"strconv"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    )
    
    // TextHandler is a [Handler] that writes Records to an [io.Writer] as a
    // sequence of key=value pairs separated by spaces and followed by a newline.
    type TextHandler struct {
    	*commonHandler
    }
    
    // NewTextHandler creates a [TextHandler] that writes to w,
    // using the given options.
    // If opts is nil, the default options are used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. operator/pkg/object/testdata/well-formed-with-space.out.yaml

    Xiaopeng Han <******@****.***> 1690313976 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 147 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/PercentEscaper.java

    public final class PercentEscaper extends UnicodeEscaper {
    
      // In some escapers spaces are escaped to '+'
      private static final char[] PLUS_SIGN = {'+'};
    
      // Percent escapers output upper case hex digits (uri escapers require this).
      private static final char[] UPPER_HEX_DIGITS = "0123456789ABCDEF".toCharArray();
    
      /** If true we should convert space to the {@code +} character. */
      private final boolean plusForSpace;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/PercentEscaper.java

    public final class PercentEscaper extends UnicodeEscaper {
    
      // In some escapers spaces are escaped to '+'
      private static final char[] PLUS_SIGN = {'+'};
    
      // Percent escapers output upper case hex digits (uri escapers require this).
      private static final char[] UPPER_HEX_DIGITS = "0123456789ABCDEF".toCharArray();
    
      /** If true we should convert space to the {@code +} character. */
      private final boolean plusForSpace;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    //	url('https://example.com/path with spaces/').getEscapedPath() // returns '/path%20with%20spaces/'
    //	url('https://example.com').getEscapedPath() // returns ''
    //	url('https://example.com/path?k1=a&k2=b&k2=c').getQuery() // returns { 'k1': ['a'], 'k2': ['b', 'c']}
    //	url('https://example.com/path?key with spaces=value with spaces').getQuery() // returns { 'key with spaces': ['value with spaces']}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/image/draw/clip_test.go

    		// rectangles, in their respective coordinate spaces.
    		if !r.In(c.dr) {
    			t.Errorf("%s: c.dr %v does not contain r %v", c.desc, c.dr, r)
    		}
    		// sr is r translated into src's coordinate space.
    		sr := r.Add(c.sp.Sub(c.dr.Min))
    		if !sr.In(c.sr) {
    			t.Errorf("%s: c.sr %v does not contain sr %v", c.desc, c.sr, sr)
    		}
    		if !c.nilMask {
    			// mr is r translated into mask's coordinate space.
    			mr := r.Add(c.mp.Sub(c.dr.Min))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

        // Note that all tests use a relative path to the script because its absolute path may contain
        // spaces and it breaks logic String.execute which splits the given string at spaces without
        // any options to escape the space.
        ShellScript baseScript = ShellScript.builder().printEnvironmentVariable('FOOBAR').printWorkingDir().writeTo(testDirectory, "test")
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top