Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 142 for predefined (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. test-site/activator-launch-1.3.2.jar

    abstract interface PredefinedRepository extends Repository { public abstract Predefined id(); } xsbti/Predefined.class package xsbti; public final synchronized enum Predefined { public static final Predefined Local; public static final Predefined MavenLocal; public static final Predefined MavenCentral; public static final Predefined ScalaToolsReleases; public static final Predefined ScalaToolsSnapshots; public static final Predefined SonatypeOSSReleases; public static final Predefined SonatypeOSSSnapshots;...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  7. 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)
  8. 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)
  9. src/cmd/internal/goobj/objfile.go

    	PkgIdxHashed64                      // Short hashed (content-addressable) symbols
    	PkgIdxHashed                        // Hashed (content-addressable) symbols
    	PkgIdxBuiltin                       // Predefined runtime symbols (ex: runtime.newobject)
    	PkgIdxSelf                          // Symbols defined in the current package
    	PkgIdxSpecial  = PkgIdxSelf         // Indices above it has special meanings
    	PkgIdxInvalid  = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. docs/en/docs/how-to/sql-databases-peewee.md

    If you are developing an application with an older non-async framework, and can work with all its defaults, **it can be a great tool**.
    
    But if you need to change some of the defaults, support more than one predefined database, work with an async framework (like FastAPI), etc, you will need to add quite some complex extra code to override those defaults.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top