Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 159 of 159 for spacer (0.31 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    // Finish ends message building and generates a binary message.
    func (b *Builder) Finish() ([]byte, error) {
    	if b.section < sectionHeader {
    		return nil, ErrNotStarted
    	}
    	b.section = sectionDone
    	// Space for the header was allocated in NewBuilder.
    	b.header.pack(b.msg[b.start:b.start])
    	return b.msg, nil
    }
    
    // A ResourceHeader is the header of a DNS resource record. There are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    	attr := "user.total_writes"
    
    	data := make([]byte, 8)
    	binary.LittleEndian.PutUint64(data, writeCount)
    	return xattr.LSet(s.formatFile, attr, data)
    }
    
    // DiskInfo provides current information about disk space usage,
    // total free inodes and underlying filesystem.
    func (s *xlStorage) DiskInfo(ctx context.Context, _ DiskInfoOptions) (info DiskInfo, err error) {
    	info, err = s.diskInfoCache.GetWithCtx(ctx)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  3. src/cmd/go/go_test.go

    	tg.run("run", tg.path("foo.go"))
    
    	// test for ldflags
    	tg.tempFile("bar.pc", `
    Name: bar
    Description: The bar library
    Version: 1.0.0
    Libs: -Wl,-rpath=/path\ with\ spaces/bin
    `)
    	tg.tempFile("bar.go", `package main
    /*
    #cgo pkg-config: bar
    */
    import "C"
    func main() {}
    `)
    	tg.run("run", tg.path("bar.go"))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    			// If we can't create a temp dir, terminate immediately
    			// with an error as opposed to returning an error to the
    			// caller; failed MkDir most likely indicates that we're
    			// out of disk space or there is some other systemic error
    			// that will make forward progress unlikely.
    			base.Fatalf("failed to create temporary dir: %v", err)
    		}
    		coverdirArg = append(coverdirArg, "-test.gocoverdir="+gcd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	// It is pretty close to the offset range of a direct CALL machine instruction.
    	// We leave some room for extra stuff like PLT stubs.
    	TrampLimit uint64
    
    	// Empty spaces between codeblocks will be padded with this value.
    	// For example an architecture might want to pad with a trap instruction to
    	// catch wayward programs. Architectures that do not define a padding value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    | `file:relative/path%21` | `relative/path!` | Without a scheme, the path is taken as-is, without decoding.
    | `https://example.com/my folder/` | `https://example.com/my%20folder/` | Spaces are not valid in URLs.
    | `https://example.com/my%%badly%encoded%path` | `https://example.com/my%25%25badly%25encoded%25path` | `%` must be encoded as `%25` in URLs, and no `%`-escapes should be invalid.
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    			if s.f.pass.debug > regDebug {
    				fmt.Printf("after phis\n")
    				for _, x := range s.startRegs[b.ID] {
    					fmt.Printf("  %s: v%d\n", &s.registers[x.r], x.v.ID)
    				}
    			}
    		}
    
    		// Allocate space to record the desired registers for each value.
    		if l := len(oldSched); cap(dinfo) < l {
    			dinfo = make([]dentry, l)
    		} else {
    			dinfo = dinfo[:l]
    			for i := range dinfo {
    				dinfo[i] = dentry{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

     * determining whether a given domain name is an effective top-level domain (public suffix).
     *
     * <p>Because this class is used in GWT, the data members are stored in a space-efficient manner.
     * See {@link TrieParser}.
     *
     * @since 16.0
     */
    @GwtCompatible
    @Beta
    public final class PublicSuffixPatterns {
      private PublicSuffixPatterns() {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

     * determining whether a given domain name is an effective top-level domain (public suffix).
     *
     * <p>Because this class is used in GWT, the data members are stored in a space-efficient manner.
     * See {@link TrieParser}.
     *
     * @since 16.0
     */
    @GwtCompatible
    @Beta
    public final class PublicSuffixPatterns {
      private PublicSuffixPatterns() {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (1)
Back to top