Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 14 for hdrs (0.02 seconds)

  1. src/archive/tar/testdata/gnu-multi-hdrs.tar

    Joe Tsai <******@****.***> 1442390336 -0700
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Dec 02 02:27:27 GMT 2015
    - 4.5K bytes
    - Click Count (0)
  2. src/archive/tar/testdata/pax-multi-hdrs.tar

    Joe Tsai <******@****.***> 1442390336 -0700
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Dec 02 02:27:27 GMT 2015
    - 4.5K bytes
    - Click Count (0)
  3. src/archive/tar/testdata/pax-bad-hdr-large.tar.bz2

    pax-bad-hdr-large.tar XXXXXXXXXXXXXXXXXXXX...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Oct 05 20:40:43 GMT 2022
    - 156 bytes
    - Click Count (0)
  4. architecture/standards/0001-use-architectural-decision-records.md

    The main logic with ADRs is to describe (architectural) decisions made:
    
    * To provide best practices and solutions we (as the *build tool* team) want to promote.
    * To avoid asking the same thing multiple times during code review.
    * To explain *rejected solutions*, for now, and future development, in case they are proposed again.
    
    ADRs can be written by any team.
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Aug 26 17:29:22 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  5. internal/bucket/bandwidth/reader.go

    	hdr := r.opts.HeaderSize // remaining header bytes
    	var tokens int           // number of tokens to request
    
    	if hdr > 0 { // available tokens go towards header first
    		if hdr < b { // all of header can be accommodated
    			r.opts.HeaderSize = 0
    			need = int(math.Min(float64(b-hdr), float64(need))) // use remaining tokens towards payload
    			tokens = need + hdr
    		} else { // part of header can be accommodated
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  6. architecture/README.md

    This directory contains documentation that describes Gradle's architecture and how the various pieces fit together and work.
    
    ## Architecture decision records (ADRs)
    
    The Gradle team uses ADRs to record architectural decisions that the team has made.
    
    See [Architecture decisions records](standards) for the list of ADRs.
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  7. architecture/standards/README.md

    ## Architecture Standards
    
    **Experimental!**
    
    We'd like to capture our architectural decisions about the build tool as [Architectural Decision Records (ADRs)](https://adr.github.io/).
    For now we just have this global repository of ADRs.
    If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs.
    
    Our aim is to keep the process lightweight and approachable.
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Feb 21 06:30:44 GMT 2024
    - 546 bytes
    - Click Count (0)
  8. src/archive/tar/fuzz_test.go

    			header  *Header
    			content []byte
    		}
    		files := []file{}
    		for {
    			hdr, err := r.Next()
    			if err == io.EOF {
    				break
    			}
    			if err != nil {
    				return
    			}
    			buf := bytes.NewBuffer(nil)
    			if _, err := io.Copy(buf, r); err != nil {
    				continue
    			}
    			files = append(files, file{header: hdr, content: buf.Bytes()})
    		}
    
    		// If we were unable to read anything out of the archive don't
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Jan 13 18:06:33 GMT 2022
    - 2.2K bytes
    - Click Count (0)
  9. src/archive/tar/example_test.go

    		{"gopher.txt", "Gopher names:\nGeorge\nGeoffrey\nGonzo"},
    		{"todo.txt", "Get animal handling license."},
    	}
    	for _, file := range files {
    		hdr := &tar.Header{
    			Name: file.Name,
    			Mode: 0600,
    			Size: int64(len(file.Body)),
    		}
    		if err := tw.WriteHeader(hdr); err != nil {
    			log.Fatal(err)
    		}
    		if _, err := tw.Write([]byte(file.Body)); err != nil {
    			log.Fatal(err)
    		}
    	}
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Nov 16 16:54:08 GMT 2017
    - 1.4K bytes
    - Click Count (0)
  10. src/archive/tar/testdata/pax-path-hdr.tar

    Joe Tsai <******@****.***> 1443691829 -0700
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Fri Nov 06 04:31:26 GMT 2015
    - 1K bytes
    - Click Count (0)
Back to Top