Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 133 for predefined (0.21 sec)

  1. pkg/kube/inject/webhook_test.go

    			// :ENV:=, these two are not correct variables.
    			name: "no-predefined-kv-with-values-contain-ENV-separator-invalid-format",
    			in:   "/inject/:ENV:rootpage1=efgh:ENV:=abb:ENV:=",
    			want: map[string]string{"ROOTPAGE1": "efgh"},
    		},
    		{
    			// this is to test that the path is an url encoded string, still using
    			// slash as separators
    			name: "no-predefined-kv-with-mixed-values",
    			in: func() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  2. src/encoding/gob/type.go

    func (t *CommonType) safeString(seen map[typeId]bool) string {
    	return t.Name
    }
    
    func (t *CommonType) name() string { return t.Name }
    
    // Create and check predefined types
    // The string for tBytes is "bytes" not "[]byte" to signify its specialness.
    
    var (
    	// Primordial types, needed during initialization.
    	// Always passed as pointers so the interface{} type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/query-params.md

    * `needy`, a required `str`.
    * `skip`, an `int` with a default value of `0`.
    * `limit`, an optional `int`.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 09:08:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	}
    	scope := CleanScope(requestInfo)
    	dryRun := cleanDryRun(req.URL)
    
    	// We don't use verb from <requestInfo>, as this may be propagated from
    	// InstrumentRouteFunc which is registered in installer.go with predefined
    	// list of verbs (different than those translated to RequestInfo).
    	// However, we need to tweak it e.g. to differentiate GET from LIST.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  5. src/hash/crc64/crc64.go

    // information.
    package crc64
    
    import (
    	"errors"
    	"hash"
    	"internal/byteorder"
    	"sync"
    )
    
    // The size of a CRC-64 checksum in bytes.
    const Size = 8
    
    // Predefined polynomials.
    const (
    	// The ISO polynomial, defined in ISO 3309 and used in HDLC.
    	ISO = 0xD800000000000000
    
    	// The ECMA polynomial, defined in ECMA 182.
    	ECMA = 0xC96C5795D7870F42
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/tls.go

    )
    
    // Match by source labels, the listener port where traffic comes in, the gateway on which the rule is being
    // bound, etc. All these can be checked statically, since we are generating the configuration for a proxy
    // with predefined labels, on a specific port.
    func matchTLS(match *v1alpha3.TLSMatchAttributes, proxyLabels labels.Instance, gateways sets.String, port int, proxyNamespace string) bool {
    	if match == nil {
    		return true
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

                semantics.
                &lt;p>This is generally a properties format: {@code &lt;name&gt;value&lt;/name&gt;} with predefined
                properties names.
              </description>
            </field>
            <field>
              <name>provides</name>
              <version>1.1.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top