Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 69 for stdlib (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs_src/security/tutorial005_py310.py

    from fastapi.security import (
        OAuth2PasswordBearer,
        OAuth2PasswordRequestForm,
        SecurityScopes,
    )
    from jwt.exceptions import InvalidTokenError
    from pwdlib import PasswordHash
    from pydantic import BaseModel, ValidationError
    
    # to get a string like this run:
    # openssl rand -hex 32
    SECRET_KEY = "09d25e094faa6ca2556c818166b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7"
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Sep 29 02:57:38 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  2. ci/official/requirements_updater/numpy1_requirements/requirements.in

    wheel ~= 0.41.2
    h5py >= 3.11.0, < 3.15.0
    lit ~= 17.0.2
    opt_einsum == 3.3.0
    astunparse == 1.6.3
    dill == 0.3.7
    astor == 0.7.1
    typing_extensions ~= 4.14.1
    gast == 0.4.0
    termcolor == 2.3.0
    wrapt == 1.16.0
    tblib == 2.0.0
    ml_dtypes >= 0.5.1, < 0.6.0
    auditwheel >= 6.1.0
    # Install tensorboard, and keras
    # Note that here we want the latest version that matches TF major.minor version
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Wed Oct 15 20:30:40 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  3. docs_src/security/tutorial004_an_py39.py

    import jwt
    from fastapi import Depends, FastAPI, HTTPException, status
    from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
    from jwt.exceptions import InvalidTokenError
    from pwdlib import PasswordHash
    from pydantic import BaseModel
    
    # to get a string like this run:
    # openssl rand -hex 32
    SECRET_KEY = "09d25e094faa6ca2556c818166b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7"
    ALGORITHM = "HS256"
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Sep 29 02:57:38 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  4. .ci/jobs.t/defaults.yml

        publishers:
    # Disable Junit publisher for now since it's causing OOME on our Jenkins instance
    #      - junit:
    #          results: "**/*Junit/*.xml, **/test-results/*/*.xml"
    #          keep-long-stdio: true
    #          allow-empty-results: true
          # Upload additional logs
          - google-cloud-storage:
              credentials-id: 'elasticsearch-ci-gcs-plugin'
              uploads:
                - classic:
    Created: Sun Dec 21 06:47:06 GMT 2025
    - Last Modified: Wed Sep 29 15:38:05 GMT 2021
    - 2.9K bytes
    - Click Count (0)
  5. docs_src/security/tutorial004_an_py310.py

    from typing import Annotated
    
    import jwt
    from fastapi import Depends, FastAPI, HTTPException, status
    from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
    from jwt.exceptions import InvalidTokenError
    from pwdlib import PasswordHash
    from pydantic import BaseModel
    
    # to get a string like this run:
    # openssl rand -hex 32
    SECRET_KEY = "09d25e094faa6ca2556c818166b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7"
    ALGORITHM = "HS256"
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Sep 29 02:57:38 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.15.md

    * no ([#75820](https://github.com/kubernetes/kubernetes/pull/75820), [@YoubingLi](https://github.com/YoubingLi))
    * Use stdlib to log stack trace when a panic occurs ([#75853](https://github.com/kubernetes/kubernetes/pull/75853), [@roycaihw](https://github.com/roycaihw))
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 278.9K bytes
    - Click Count (0)
  7. docs_src/security/tutorial005_py39.py

    from fastapi.security import (
        OAuth2PasswordBearer,
        OAuth2PasswordRequestForm,
        SecurityScopes,
    )
    from jwt.exceptions import InvalidTokenError
    from pwdlib import PasswordHash
    from pydantic import BaseModel, ValidationError
    
    # to get a string like this run:
    # openssl rand -hex 32
    SECRET_KEY = "09d25e094faa6ca2556c818166b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7"
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Sep 29 02:57:38 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  8. src/bufio/example_test.go

    	// Buffer contents: Hello, world!
    	// This is a ReadFrom example.
    }
    
    // The simplest use of a Scanner, to read standard input as a set of lines.
    func ExampleScanner_lines() {
    	scanner := bufio.NewScanner(os.Stdin)
    	for scanner.Scan() {
    		fmt.Println(scanner.Text()) // Println will add back the final '\n'
    	}
    	if err := scanner.Err(); err != nil {
    		fmt.Fprintln(os.Stderr, "reading standard input:", err)
    	}
    }
    
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Fri Nov 01 21:52:12 GMT 2024
    - 5.5K bytes
    - Click Count (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

         * @see #createTerminal(LookupContext)
         */
        protected void doCreateTerminal(C context, TerminalBuilder builder) {
            if (context.invokerRequest.embedded()) {
                InputStream in = context.invokerRequest.stdIn().orElse(InputStream.nullInputStream());
                OutputStream out = context.invokerRequest.stdOut().orElse(OutputStream.nullOutputStream());
                builder.streams(in, out);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Oct 28 13:01:07 GMT 2025
    - 43.2K bytes
    - Click Count (0)
  10. ci/official/requirements_updater/numpy1_requirements/requirements_lock_3_11.txt

        #   google-pasta
        #   tb-nightly
    tb-nightly==2.20.0a20250419 \
        --hash=sha256:41ba72431b88a87ed07e284cb244c29cd5dc42b1dd5970436f4e1bec9684e0f0
        # via -r ci/official/requirements_updater/requirements.in
    tblib==2.0.0 \
        --hash=sha256:9100bfa016b047d5b980d66e7efed952fbd20bd85b56110aaf473cb97d18709a \
        --hash=sha256:a6df30f272c08bf8be66e0775fad862005d950a6b8449b94f7c788731d70ecd7
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Mon Dec 15 16:23:21 GMT 2025
    - 66.1K bytes
    - Click Count (1)
Back to Top