Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for createCat (0.21 sec)

  1. api/go1.17.txt

    pkg archive/zip, method (*File) OpenRaw() (io.Reader, error)
    pkg archive/zip, method (*Writer) Copy(*File) error
    pkg archive/zip, method (*Writer) CreateRaw(*FileHeader) (io.Writer, error)
    pkg compress/lzw, method (*Reader) Close() error
    pkg compress/lzw, method (*Reader) Read([]uint8) (int, error)
    pkg compress/lzw, method (*Reader) Reset(io.Reader, Order, int)
    pkg compress/lzw, method (*Writer) Close() error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 18K bytes
    - Viewed (0)
  2. lib/time/mkzip.go

    		if err != nil {
    			log.Fatal(err)
    		}
    		if strings.HasSuffix(path, ".zip") {
    			log.Fatalf("unexpected file during walk: %s", path)
    		}
    		name := filepath.ToSlash(path)
    		w, err := zw.CreateRaw(&zip.FileHeader{
    			Name:               name,
    			Method:             zip.Store,
    			CompressedSize64:   uint64(len(data)),
    			UncompressedSize64: uint64(len(data)),
    			CRC32:              crc32.ChecksumIEEE(data),
    		})
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 17:32:07 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/archive/zip/writer_test.go

    			Method:             f.method,
    			Flags:              f.flags,
    			CRC32:              f.crc32,
    			CompressedSize64:   f.compressedSize,
    			UncompressedSize64: f.uncompressedSize,
    		}
    		w, err := w.CreateRaw(h)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if compressedContent != nil {
    			_, err = w.Write(compressedContent)
    		} else {
    			_, err = w.Write(f.content)
    		}
    		if err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Sep 15 19:04:06 GMT 2023
    - 14.1K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg mime/multipart, method (*Writer) CreateFormField(string) (io.Writer, error)
    pkg mime/multipart, method (*Writer) CreateFormFile(string, string) (io.Writer, error)
    pkg mime/multipart, method (*Writer) CreatePart(textproto.MIMEHeader) (io.Writer, error)
    pkg mime/multipart, method (*Writer) FormDataContentType() string
    pkg mime/multipart, method (*Writer) WriteField(string, string) error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  5. src/archive/zip/writer.go

    		return err
    	}
    	_, err := w.Write(h.Extra)
    	return err
    }
    
    // CreateRaw adds a file to the zip archive using the provided [FileHeader] and
    // returns a [Writer] to which the file contents should be written. The file's
    // contents must be written to the io.Writer before the next call to [Writer.Create],
    // [Writer.CreateHeader], [Writer.CreateRaw], or [Writer.Close].
    //
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
Back to top