Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for predefined (0.2 sec)

  1. src/html/template/escape.go

    		return c
    	}
    	c = nudge(c)
    	// Check for disallowed use of predefined escapers in the pipeline.
    	for pos, idNode := range n.Pipe.Cmds {
    		node, ok := idNode.Args[0].(*parse.IdentifierNode)
    		if !ok {
    			// A predefined escaper "esc" will never be found as an identifier in a
    			// Chain or Field node, since:
    			// - "esc.x ..." is invalid, since predefined escapers return strings, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Files.java

       *
       * @param file the file to read from
       * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for
       *     helpful predefined constants
       * @return the buffered reader
       */
      public static BufferedReader newReader(File file, Charset charset) throws FileNotFoundException {
        checkNotNull(file);
        checkNotNull(charset);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. pkg/proxy/util/nfacct/nfacct_linux_test.go

    }
    
    // newRequest creates a request object with the given cmd, flags, predefined response and error.
    // It additionally records the created request object.
    func (fh *fakeHandler) newRequest(cmd int, flags uint16) request {
    	var response [][]byte
    	if fh.responses != nil && len(fh.responses) > 0 {
    		response = fh.responses[0]
    		// remove the response from the list of predefined responses and add it to request object for mocking.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/Files.java

       *
       * @param file the file to read from
       * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for
       *     helpful predefined constants
       * @return the buffered reader
       */
      public static BufferedReader newReader(File file, Charset charset) throws FileNotFoundException {
        checkNotNull(file);
        checkNotNull(charset);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. src/internal/zstd/fse.go

    			basebits := matchLengthBase[idx]
    			be.baseline = basebits & 0xffffff
    			be.basebits = uint8(basebits >> 24)
    		}
    		baselineTable[i] = be
    	}
    	return nil
    }
    
    // predefinedLiteralTable is the predefined table to use for literal lengths.
    // Generated from table in RFC 3.1.1.3.2.2.1.
    // Checked by TestPredefinedTables.
    var predefinedLiteralTable = [...]fseBaselineEntry{
    	{0, 0, 4, 0}, {0, 0, 4, 16}, {1, 0, 5, 32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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