Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 137 for spacer (0.15 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    )
    
    var (
    	// Regexp to split a line in code and comment, trimming spaces
    	rxAsmComment = regexp.MustCompile(`^\s*(.*?)\s*(?://\s*(.+)\s*)?$`)
    
    	// Regexp to extract an architecture check: architecture name (or triplet),
    	// followed by semi-colon, followed by a comma-separated list of opcode checks.
    	// Extraneous spaces are ignored.
    	//
    	// An example: arm64/v8.1 : -`ADD` , `SUB`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default String[] getCrawlerDocumentSpaces() {
            String[] spaces = (String[]) propMap.get(CRAWLER_DOCUMENT_SPACES);
            if (spaces == null) {
                spaces = Arrays.stream(getCrawlerDocumentSpaceCharsAsArray()).mapToObj(Character::toString).toArray(n -> new String[n]);
                propMap.put(CRAWLER_DOCUMENT_SPACES, spaces);
            }
            return spaces;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    	return -1
    }
    
    // getServerPoolsAvailableSpace will return the available space of each pool after storing the content.
    // If there is not enough space the pool will return 0 bytes available.
    // The size of each will be multiplied by the number of sets.
    // Negative sizes are seen as 0 bytes.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file number"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EAGAIN", "resource temporarily unavailable"},
    	{12, "ENOMEM", "not enough space"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    	{16, "EBUSY", "device busy"},
    	{17, "EEXIST", "file exists"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  5. src/time/format.go

    //	"Z07:00:00"  Z or ±hh:mm:ss
    //
    // Within the format string, the underscores in "_2" and "__2" represent spaces
    // that may be replaced by digits if the following number has multiple digits,
    // for compatibility with fixed-width Unix time formats. A leading zero represents
    // a zero-padded value.
    //
    // The formats __2 and 002 are space-padded and zero-padded
    // three-character day of year; there is no unpadded day of year format.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. src/net/url/url_test.go

    			Path:   "/foo",
    		},
    		"",
    	},
    	// spaces in hosts are disallowed but escaped spaces in IPv6 scope IDs are grudgingly OK.
    	// This happens on Windows.
    	// golang.org/issue/14002
    	{
    		"tcp://[2020::2020:20:2020:2020%25Windows%20Loves%20Spaces]:2020",
    		&URL{
    			Scheme: "tcp",
    			Host:   "[2020::2020:20:2020:2020%Windows Loves Spaces]:2020",
    		},
    		"",
    	},
    	// test we can roundtrip magnet url
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			wantStatus: framework.NewStatus(framework.Unschedulable, "Too many pods"),
    		},
    		{
    			pod:        newResourcePod(framework.Resource{MilliCPU: 1, Memory: 1}),
    			nodeInfo:   framework.NewNodeInfo(newResourcePod(framework.Resource{MilliCPU: 5, Memory: 5})),
    			name:       "even if both resources fit, predicate fails when there's no space for additional pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	chunks     []atomicScavChunkData
    	min, max   atomic.Uintptr
    	minHeapIdx atomic.Uintptr
    
    	// searchAddr* is the maximum address (in the offset address space, so we have a linear
    	// view of the address space; see mranges.go:offAddr) containing memory available to
    	// scavenge. It is a hint to the find operation to avoid O(n^2) behavior in repeated lookups.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/testing/testing.go

    	}
    	buf := new(strings.Builder)
    	// Every line is indented at least 4 spaces.
    	buf.WriteString("    ")
    	fmt.Fprintf(buf, "%s:%d: ", file, line)
    	lines := strings.Split(s, "\n")
    	if l := len(lines); l > 1 && lines[l-1] == "" {
    		lines = lines[:l-1]
    	}
    	for i, line := range lines {
    		if i > 0 {
    			// Second and subsequent lines are indented an additional 4 spaces.
    			buf.WriteString("\n        ")
    		}
    		buf.WriteString(line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    // floating point and quantized space. It is designed to reproduce TF's
    // implementation, mirroring the previous XLA implementation.
    //
    // 1. Computing proper quantized bounds. This involves nudging the input bounds.
    // 2. Converting the input bounds to quantized space, rounding values.
    // 3. Convert back into floating point space.
    class ConvertFakeQuantWithMinMaxVarsOp : public RewritePattern {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top