Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 142 for predefined (0.38 sec)

  1. src/hash/crc32/crc32.go

    // for information.
    package crc32
    
    import (
    	"errors"
    	"hash"
    	"internal/byteorder"
    	"sync"
    	"sync/atomic"
    )
    
    // The size of a CRC-32 checksum in bytes.
    const Size = 4
    
    // Predefined polynomials.
    const (
    	// IEEE is by far and away the most common CRC-32 polynomial.
    	// Used by ethernet (IEEE 802.3), v.42, fddi, gzip, zip, png, ...
    	IEEE = 0xedb88320
    
    	// Castagnoli's polynomial, used in iSCSI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. internal/grid/README.md

    Therefore, using this for large payloads will likely be slower than using a separate connection,
    and other connections will be blocked while the large payload is being sent.
    
    ## Handlers & Routes
    
    Handlers have a predefined Handler ID. 
    In addition, there can be several *static* subroutes used to differentiate between different handlers of the same ID.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof.go

    // or network connections.
    //
    // A Profile's methods can be called from multiple goroutines simultaneously.
    //
    // Each Profile has a unique name. A few profiles are predefined:
    //
    //	goroutine    - stack traces of all current goroutines
    //	heap         - a sampling of memory allocations of live objects
    //	allocs       - a sampling of all past memory allocations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/manually.md

    ## Deployment Concepts
    
    These examples run the server program (e.g Uvicorn), starting **a single process**, listening on all the IPs (`0.0.0.0`) on a predefined port (e.g. `80`).
    
    This is the basic idea. But you will probably want to take care of some additional things, like:
    
    * Security - HTTPS
    * Running on startup
    * Restarts
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/apis/apiserverinternal/validation/validation.go

    	allErrs := field.ErrorList{}
    	// We do not verify that the condition type or the condition status is
    	// a predefined one because we might add more type or status later.
    	seenType := make(map[apiserverinternal.StorageVersionConditionType]int)
    	for i, condition := range conditions {
    		if ii, ok := seenType[condition.Type]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. src/text/template/doc.go

    During execution functions are found in two function maps: first in the
    template, then in the global function map. By default, no functions are defined
    in the template but the Funcs method can be used to add them.
    
    Predefined global functions are named as follows.
    
    	and
    		Returns the boolean AND of its arguments by returning the
    		first empty argument or the last argument. That is,
    		"and x y" behaves as "if x then y else x."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/internal/zstd/block.go

    	seqMatch
    )
    
    // seqCodeInfoData is the information needed to set up seqTables and
    // seqTableBits for a particular kind of sequence code.
    type seqCodeInfoData struct {
    	predefTable     []fseBaselineEntry // predefined FSE
    	predefTableBits int                // number of bits in predefTable
    	maxSym          int                // max symbol value in FSE
    	maxBits         int                // max bits for FSE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	return atomic.SwapUint64(&p.reads, 0)
    }
    
    // reproducingTransformer is a custom test-only transformer used purely
    // for testing consistency.
    // It allows for creating predefined objects on TransformFromStorage operations,
    // which allows for precise in time injection of new objects in the middle of
    // read operations.
    type reproducingTransformer struct {
    	wrapped value.Transformer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/time/example_test.go

    	if err != nil { // Always check errors even if they should not happen.
    		panic(err)
    	}
    
    	// time.Time's Stringer method is useful without any format.
    	fmt.Println("default format:", t)
    
    	// Predefined constants in the package implement common layouts.
    	fmt.Println("Unix format:", t.Format(time.UnixDate))
    
    	// The time zone attached to the time value affects its output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. src/encoding/gob/doc.go

    amortizing the cost of compilation.
    
    # Basics
    
    A stream of gobs is self-describing. Each data item in the stream is preceded by
    a specification of its type, expressed in terms of a small set of predefined
    types. Pointers are not transmitted, but the things they point to are
    transmitted; that is, the values are flattened. Nil pointers are not permitted,
    as they have no value. Recursive types work fine, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top