Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for predefined (0.15 sec)

  1. pilot/pkg/networking/core/cluster_tls.go

    		}
    		// `istio-peer-exchange` alpn is only used when using mtls communication between peers.
    		// We add `istio-peer-exchange` to the list of alpn strings.
    		// The code has repeated snippets because We want to use predefined alpn strings for efficiency.
    		if cb.isHttp2Cluster(c) {
    			// This is HTTP/2 in-mesh cluster, advertise it with ALPN.
    			if features.MetadataExchange && !features.DisableMxALPN {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/log/log.go

    // license that can be found in the LICENSE file.
    
    // Package log implements a simple logging package. It defines a type, [Logger],
    // with methods for formatting output. It also has a predefined 'standard'
    // Logger accessible through helper functions Print[f|ln], Fatal[f|ln], and
    // Panic[f|ln], which are easier to use than creating a Logger manually.
    // That logger writes to standard error and prints the date and time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    		BlockOwnerDeletion: blockOwnerDeletionPtr,
    	}
    }
    
    // UnstructuredJSONScheme is capable of converting JSON data into the Unstructured
    // type, which can be used for generic access to objects without a predefined scheme.
    // TODO: move into serializer/json.
    var UnstructuredJSONScheme runtime.Codec = unstructuredJSONScheme{}
    
    type unstructuredJSONScheme struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal.go

    	if prefix := p.attrPrefix[url]; prefix != "" {
    		return prefix
    	}
    
    	// The "http://www.w3.org/XML/1998/namespace" name space is predefined as "xml"
    	// and must be referred to that way.
    	// (The "http://www.w3.org/2000/xmlns/" name space is also predefined as "xmlns",
    	// but users should not be trying to use that one directly - that's our job.)
    	if url == xmlURL {
    		return xmlPrefix
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    Gradle requires special syntax for adding a property so that it can fail fast. For example, this allows Gradle to recognize
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. src/internal/reflectlite/type.go

    	if T == V {
    		return true
    	}
    
    	kind := T.Kind()
    	if kind != V.Kind() {
    		return false
    	}
    
    	// Non-composite types of equal kind have same underlying type
    	// (the predefined instance of the type).
    	if abi.Bool <= kind && kind <= abi.Complex128 || kind == abi.String || kind == abi.UnsafePointer {
    		return true
    	}
    
    	// Composite types.
    	switch kind {
    	case abi.Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/security/oauth2-scopes.md

        But in your application, for security, you should make sure you only add the scopes that the user is actually able to have, or the ones you have predefined.
    
    === "Python 3.10+"
    
        ```Python hl_lines="156"
        {!> ../../../docs_src/security/tutorial005_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="156"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/bigger-applications.md

    * They will be marked with a list of tags that contain a single string `"items"`.
        * These "tags" are especially useful for the automatic interactive documentation systems (using OpenAPI).
    * All of them will include the predefined `responses`.
    * All these *path operations* will have the list of `dependencies` evaluated/executed before them.
        * If you also declare dependencies in a specific *path operation*, **they will be executed too**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/map.go

    			c.isMidWord = false
    		}
    		wasMid = isMid
    		c.copy()
    	}
    	return true
    }
    
    // finalSigmaSpan would be the same as isLower.
    
    // elUpper implements Greek upper casing, which entails removing a predefined
    // set of non-blocked modifiers. Note that these accents should not be removed
    // for title casing!
    // Example: "Οδός" -> "ΟΔΟΣ".
    func elUpper(c *context) bool {
    	// From CLDR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/text/scanner/scanner.go

    func (pos Position) String() string {
    	s := pos.Filename
    	if s == "" {
    		s = "<input>"
    	}
    	if pos.IsValid() {
    		s += fmt.Sprintf(":%d:%d", pos.Line, pos.Column)
    	}
    	return s
    }
    
    // Predefined mode bits to control recognition of tokens. For instance,
    // to configure a [Scanner] such that it only recognizes (Go) identifiers,
    // integers, and skips comments, set the Scanner's Mode field to:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top