Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 566 for spacer (0.13 sec)

  1. src/runtime/mstats.go

    	// HeapSys is bytes of heap memory obtained from the OS.
    	//
    	// HeapSys measures the amount of virtual address space
    	// reserved for the heap. This includes virtual address space
    	// that has been reserved but not yet used, which consumes no
    	// physical memory, but tends to be small, as well as virtual
    	// address space for which the physical memory has been
    	// returned to the OS after it became unused (see HeapReleased
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * <p>
         *     * English default sentence-break algorithm - Stops at a period followed by a space or a HTML block tag, such as  &lt;P&gt;.
         * <p>
         *     * Breakiterator sentence-break algorithm - In general, stops at a period,
         *       question mark or exclamation mark followed by a space if the next word starts with a capital letter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/build.go

    			return false
    		}
    	}
    	return true
    }
    
    // splitQuoted splits the string s around each instance of one or more consecutive
    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  4. cmd/sts-datatypes.go

    	// A percentage value that indicates the size of the policy in packed form.
    	// The service rejects any policy with a packed size greater than 100 percent,
    	// which means the policy exceeded the allowed space.
    	PackedPolicySize int `xml:",omitempty"`
    }
    
    // AssumeRoleWithWebIdentityResponse contains the result of successful AssumeRoleWithWebIdentity request.
    type AssumeRoleWithWebIdentityResponse struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  5. src/runtime/stubs.go

    // frameSize, and regArgs.
    //
    // Arguments passed on the stack and space for return values passed on the stack
    // must be laid out at the space pointed to by stackArgs (with total length
    // stackArgsSize) according to the ABI.
    //
    // stackRetOffset must be some value <= stackArgsSize that indicates the
    // offset within stackArgs where the return value space begins.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

            "Filesystem allows creation of readonly memory regions but no "
            "operations on them have been supplied.");
    
      return OkStatus();
    }
    
    // Copies a function table from plugin memory space to core memory space.
    //
    // This has three benefits:
    //   * allows having newer plugins than the current core TensorFlow: the
    //     additional entries in the plugin's table are just discarded;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. fastapi/security/oauth2.py

                ),
            ],
            scope: Annotated[
                str,
                Form(),
                Doc(
                    """
                    A single string with actually several scopes separated by spaces. Each
                    scope is also a string.
    
                    For example, a single string with:
    
                    ```python
                    "items:read items:write users:read profile openid"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/runtime/metrics/description.go

    		Cumulative:  true,
    	},
    	{
    		Name:        "/gc/scan/globals:bytes",
    		Description: "The total amount of global variable space that is scannable.",
    		Kind:        KindUint64,
    	},
    	{
    		Name:        "/gc/scan/heap:bytes",
    		Description: "The total amount of heap space that is scannable.",
    		Kind:        KindUint64,
    	},
    	{
    		Name:        "/gc/scan/stack:bytes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/security/oauth2-scopes.md

    The content of each of these strings can have any format, but should not contain spaces.
    
    These scopes represent "permissions".
    
    In OpenAPI (e.g. the API docs), you can define "security schemes".
    
    When one of these security schemes uses OAuth2, you can also declare and use scopes.
    
    Each "scope" is just a string (without spaces).
    
    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. src/cmd/go/internal/script/engine.go

    // os.PathSeparator respectively) but are not inherited in subprocess
    // environments.
    //
    // Adding single quotes around text keeps spaces in that text from being treated
    // as word separators and also disables environment variable expansion.
    // Inside a single-quoted block of text, a repeated single quote indicates
    // a literal single quote, as in:
    //
    //	'Don''t communicate by sharing memory.'
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top