Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for Deflate (0.37 sec)

  1. src/cmd/dist/buildtool.go

    	"cmd/internal/pgo",
    	"cmd/internal/pkgpath",
    	"cmd/internal/quoted",
    	"cmd/internal/src",
    	"cmd/internal/sys",
    	"cmd/internal/telemetry",
    	"cmd/link",
    	"cmd/link/internal/...",
    	"compress/flate",
    	"compress/zlib",
    	"container/heap",
    	"debug/dwarf",
    	"debug/elf",
    	"debug/macho",
    	"debug/pe",
    	"go/build/constraint",
    	"go/constant",
    	"go/version",
    	"internal/abi",
    	"internal/coverage",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Writer).Flush", Method, 4},
    		{"(*Writer).RegisterCompressor", Method, 6},
    		{"(*Writer).SetComment", Method, 10},
    		{"(*Writer).SetOffset", Method, 5},
    		{"Compressor", Type, 2},
    		{"Decompressor", Type, 2},
    		{"Deflate", Const, 0},
    		{"ErrAlgorithm", Var, 0},
    		{"ErrChecksum", Var, 0},
    		{"ErrFormat", Var, 0},
    		{"ErrInsecurePath", Var, 20},
    		{"File", Type, 0},
    		{"File.FileHeader", Field, 0},
    		{"FileHeader", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * the compilation classpath, including any required dependencies (via Gradle <<dependency_management_terminology.adoc#sub:terminology_configuration,configurations>>)
     * where the compiled class files are placed
    
    You can see how these relate to one another in this diagram:
    
    .Source sets and Java compilation
    image::java-sourcesets-compilation.png[]
    
    The shaded boxes represent properties of the source set itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    	< hash
    	< hash/adler32, hash/crc32, hash/crc64, hash/fnv;
    
    	# math/big
    	FMT, math/rand
    	< math/big;
    
    	# compression
    	FMT, encoding/binary, hash/adler32, hash/crc32, sort
    	< compress/bzip2, compress/flate, compress/lzw, internal/zstd
    	< archive/zip, compress/gzip, compress/zlib;
    
    	# templates
    	FMT
    	< text/template/parse;
    
    	net/url, text/template/parse
    	< text/template
    	< internal/lazytemplate;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. docs/en/docs/async.md

    ### Concurrency and Burgers
    
    This idea of **asynchronous** code described above is also sometimes called **"concurrency"**. It is different from **"parallelism"**.
    
    **Concurrency** and **parallelism** both relate to "different things happening more or less at the same time".
    
    But the details between *concurrency* and *parallelism* are quite different.
    
    To see the difference, imagine the following story about burgers:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	secretboxTransformerPrefixV1 = "k8s:enc:secretbox:v1:"
    	kmsTransformerPrefixV1       = "k8s:enc:kms:v1:"
    	kmsTransformerPrefixV2       = "k8s:enc:kms:v2:"
    
    	// these constants relate to how the KMS v2 plugin status poll logic
    	// and the DEK/seed generation logic behave.  In particular, the positive
    	// interval and max TTL are closely related as the difference between
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. src/internal/poll/fd_windows.go

    		}
    
    		// Sometimes we see WSAECONNRESET and ERROR_NETNAME_DELETED is
    		// returned here. These happen if connection reset is received
    		// before AcceptEx could complete. These errors relate to new
    		// connection, not to AcceptEx, so ignore broken connection and
    		// try AcceptEx again for more connections.
    		errno, ok := err.(syscall.Errno)
    		if !ok {
    			return syscall.InvalidHandle, nil, 0, errcall, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc.go

    	// close to the L1 cache line width on many systems. Also, a value of 3 fits 4 tree
    	// levels perfectly into the 21-bit pallocBits summary field at the root level.
    	//
    	// The following equation explains how each of the constants relate:
    	// summaryL0Bits + (summaryLevels-1)*summaryLevelBits + logPallocChunkBytes = heapAddrBits
    	//
    	// summaryLevels is an architecture-dependent value defined in mpagealloc_*.go.
    	summaryLevelBits = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    	tmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject:      pkix.Name{CommonName: "test"},
    		ExtraExtensions: []pkix.Extension{
    			{
    				Id: asn1.ObjectIdentifier{1, 2, 3},
    				// Ballast to inflate the certificate beyond the
    				// regular handshake record size.
    				Value: make([]byte, 65536),
    			},
    		},
    	}
    	cert, err := x509.CreateCertificate(rand.Reader, tmpl, tmpl, k.Public(), k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // FieldManager is required for apply requests.
    // ApplyOptions is equivalent to PatchOptions. It is provided as a convenience with documentation
    // that speaks specifically to how the options fields relate to apply.
    message ApplyOptions {
      // When present, indicates that modifications should not be
      // persisted. An invalid or unrecognized dryRun directive will
      // result in an error response and no further processing of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top