Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 192 for scouse (0.12 sec)

  1. fastapi/param_functions.py

        @app.get("/users/me/items/")
        async def read_own_items(
            current_user: Annotated[User, Security(get_current_active_user, scopes=["items"])]
        ):
            return [{"item_id": "Foo", "owner": current_user.username}]
        ```
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    var subAST = map[byte]AST{
    	't': &Name{Name: "std"},
    	'a': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "allocator"}},
    	'b': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "basic_string"}},
    	's': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "string"}},
    	'i': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "istream"}},
    	'o': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "ostream"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                }
            }
    
            def scope = registry.root.getLink("beans")
            scope.applyToSelf(rules)
    
            expect:
            // Rule gets applied to node in scope
            registry.realize("beans.bean2", Bean).name == "bean"
    
            // Rule doesn't get applied to node outside scope
            registry.realize("bean1", Bean).name == "bean1 unmodified"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    Error:
    	// We have an offending operand errOp and possibly an error cause.
    	if cause == "" {
    		if isTypeParam(x.typ) || isTypeParam(y.typ) {
    			// TODO(gri) should report the specific type causing the problem, if any
    			if !isTypeParam(x.typ) {
    				errOp = y
    			}
    			cause = check.sprintf("type parameter %s is not comparable with %s", errOp.typ, op)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
                                prefix,
                                "scope",
                                problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar_test.go

    		Meta: config.Meta{
    			Name:      "sidecar-scope-with-specific-host",
    			Namespace: "ns1",
    		},
    		Spec: &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*/en.wikipedia.org"},
    				},
    			},
    		},
    	}
    
    	configs17 = &config.Config{
    		Meta: config.Meta{
    			Name:      "sidecar-scope-with-wildcard-host",
    			Namespace: "ns1",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            e.cause.message == 'Cannot create service of type Integer using method DefaultServiceRegistryTest$ProviderWithCycle.createInteger() as there is a problem with parameter #1 of type String.'
            e.cause.cause.message == 'Cycle in dependencies of Service String at DefaultServiceRegistryTest$ProviderWithCycle.createString() detected'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        const string& scope =
            GetNodeAttrString(node->attrs(), kXlaInternalScopeAttr);
        if (!scope.empty()) {
          return scope;
        }
      } else {
        // If global_jit_level_ is OFF, respect only _XlaScope.
        const string& scope = GetNodeAttrString(node->attrs(), kXlaScopeAttr);
        if (!scope.empty()) {
          return scope;
        }
      }
    
      return std::nullopt;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    Error:
    	// We have an offending operand errOp and possibly an error cause.
    	if cause == "" {
    		if isTypeParam(x.typ) || isTypeParam(y.typ) {
    			// TODO(gri) should report the specific type causing the problem, if any
    			if !isTypeParam(x.typ) {
    				errOp = y
    			}
    			cause = check.sprintf("type parameter %s is not comparable with %s", errOp.typ, op)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
    
        final boolean wasInterrupted;
        @CheckForNull final Throwable cause;
    
        Cancellation(boolean wasInterrupted, @CheckForNull Throwable cause) {
          this.wasInterrupted = wasInterrupted;
          this.cause = cause;
        }
      }
    
      /** A special value that encodes the 'setFuture' state. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top