Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 502 for scope (0.02 sec)

  1. docs/en/docs/advanced/security/oauth2-scopes.md

    The *path operation* itself also declares a scope, `"items"`, so this will also be in the list of `security_scopes.scopes` passed to `get_current_user`.
    
    Here's how the hierarchy of dependencies and scopes looks like:
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 16:39
    - 13.1K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/security/oauth2-scopes.md

    ## Abhängigkeitsbaum und Scopes
    
    Sehen wir uns diesen Abhängigkeitsbaum und die Scopes noch einmal an.
    
    Da die Abhängigkeit `get_current_active_user` von `get_current_user` abhängt, wird der bei `get_current_active_user` deklarierte Scope `"me"` in die Liste der erforderlichen Scopes in `security_scopes.scopes` aufgenommen, das an `get_current_user` übergeben wird.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 15.1K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/security/oauth2-scopes.md

    Como la dependencia `get_current_active_user` tiene como sub-dependencia a `get_current_user`, el scope `"me"` declarado en `get_current_active_user` se incluirá en la lista de scopes requeridos en el `security_scopes.scopes` pasado a `get_current_user`.
    
    La *path operation* en sí también declara un scope, `"items"`, por lo que esto también estará en la lista de `security_scopes.scopes` pasado a `get_current_user`.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-30 18:26
    - 13.8K bytes
    - Viewed (0)
  4. cni/pkg/scopes/scopes.go

    //  limitations under the License.
    
    package scopes
    
    import (
    	"istio.io/istio/cni/pkg/constants"
    	"istio.io/istio/pkg/log"
    )
    
    // Required to get global logging to work
    var (
    	CNIAgent  = log.RegisterScope(constants.CNIAgentLogScope, "CNI agent scope")
    	CNIPlugin = log.RegisterScope(constants.CNIPluginLogScope, "CNI plugin scope")
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-05-31 21:45
    - 894 bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnums.java

        }
    
        /**
         * Creates a new PathScope instance with the specified ID, project scope, and dependency scopes.
         *
         * @param id the identifier for the path scope
         * @param projectScope the project scope associated with this path scope
         * @param dependencyScopes the dependency scopes associated with this path scope
         * @return a new PathScope instance
         */
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-03 13:33
    - 5.7K bytes
    - Viewed (0)
  6. istioctl/pkg/admin/istiodconfig.go

    		"Comma-separated list of output logging level for scopes in the format of <scope>:<level>[,<scope>:<level>,...]. "+
    			"Possible values for <level>: none, error, warn, info, debug")
    	logCmd.PersistentFlags().StringVar(&stackTraceLevel, "stack-trace-level", stackTraceLevel,
    		"Comma-separated list of stack trace level for scopes in the format of <scope>:<stack-trace-level>[,<scope>:<stack-trace-level>,...]. "+
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-22 15:24
    - 13.6K bytes
    - Viewed (0)
  7. tests/test_dependency_cache.py

    ):
        return {"counter": count, "subcounter": subcount}
    
    
    @app.get("/scope-counter")
    async def get_scope_counter(
        count: int = Security(dep_counter),
        scope_count_1: int = Security(dep_counter, scopes=["scope"]),
        scope_count_2: int = Security(dep_counter, scopes=["scope"]),
    ):
        return {
            "counter": count,
            "scope_counter_1": scope_count_1,
    Registered: 2025-05-25 07:19
    - Last Modified: 2022-08-23 13:30
    - 2.7K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * {@return all enabled sources that provide files in the given language for the given scope}.
         * If the given scope is {@code null}, then this method returns the enabled sources for all scopes.
         * If the given language is {@code null}, then this method returns the enabled sources for all languages.
         * An arbitrary number of source roots may exist for the same scope and language.
         * It may be, for example, the case of a multi-versions project.
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-01-30 23:29
    - 12K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_security/test_tutorial005.py

        return mod
    
    
    def get_access_token(
        *, username="johndoe", password="secret", scope=None, client: TestClient
    ):
        data = {"username": username, "password": password}
        if scope:
            data["scope"] = scope
        response = client.post("/token", data=data)
        content = response.json()
        access_token = content.get("access_token")
        return access_token
    
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-30 12:17
    - 16.8K bytes
    - Viewed (0)
  10. guava-tests/pom.xml

          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>com.google.truth.extensions</groupId>
          <artifactId>truth-java8-extension</artifactId>
          <version>${truth.version}</version>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>com.google.jimfs</groupId>
          <artifactId>jimfs</artifactId>
          <version>1.3.0</version>
          <scope>test</scope>
        </dependency>
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-20 16:15
    - 4.2K bytes
    - Viewed (0)
Back to top