Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for predefined (0.27 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    // or a string, to specify a resource or resource type by name.
    type ResourceIDOrString interface{}
    
    // Predefined resource names and types.
    var (
    	// Predefined names.
    	CREATEPROCESS_MANIFEST_RESOURCE_ID                 ResourceID = 1
    	ISOLATIONAWARE_MANIFEST_RESOURCE_ID                ResourceID = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	Path string
    	Err  error
    }
    
    func (e FileError) Error() string {
    	return fmt.Sprintf("%s: %s", e.Path, e.Err)
    }
    
    func (e FileError) Unwrap() error {
    	return e.Err
    }
    
    var (
    	// Predefined error messages for invalid files. Not exhaustive.
    	errPathNotClean    = errors.New("file path is not clean")
    	errPathNotRelative = errors.New("file path is not relative")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/pgen.go

    	for i, n := range fn.Dcl {
    		if n.Op() != ir.ONAME || n.Class != ir.PAUTO && !(n.Class == ir.PPARAMOUT && n.IsOutputParamInRegisters()) {
    			// i.e., stack assign if AUTO, or if PARAMOUT in registers (which has no predefined spill locations)
    			continue
    		}
    		if mls != nil && mls.Subsumed(n) {
    			continue
    		}
    		if !n.Used() {
    			fn.DebugInfo.(*ssa.FuncDebug).OptDcl = fn.Dcl[i:]
    			fn.Dcl = fn.Dcl[:i]
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top