Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 433 for scope_ (0.2 sec)

  1. src/cmd/compile/internal/types2/signature.go

    	}
    
    	// Use a temporary scope for all parameter declarations and then
    	// squash that scope into the parent scope (and report any
    	// redeclarations at that time).
    	//
    	// TODO(adonovan): now that each declaration has the correct
    	// scopePos, there should be no need for scope squashing.
    	// Audit to ensure all lookups honor scopePos and simplify.
    	scope := NewScope(check.scope, nopos, nopos, "function body (temp. scope)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    				paramsNamespace = paramRef.Namespace
    			} else if len(paramsNamespace) == 0 {
    				// You must supply namespace if your matcher can possibly
    				// match a cluster-scoped resource
    				return nil, fmt.Errorf("cannot use namespaced paramRef in policy binding that matches cluster-scoped resources")
    			}
    
    			paramStore = paramInformer.Lister().ByNamespace(paramsNamespace)
    		}
    
    		// If the param informer for this admission policy has not yet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. pkg/test/framework/test.go

    	context2 "context"
    	"fmt"
    	"testing"
    	"time"
    
    	traceapi "go.opentelemetry.io/otel/trace"
    
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/tracing"
    )
    
    type Test interface {
    	// Label applies the given labels to this test.
    	Label(labels ...label.Instance) Test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                    }
                    return loadedClass!!
                }
    
            @Synchronized
            override fun onReuse() {
                scope?.let {
                    // Recreate the script scope and ClassLoader, so that things that use scopes are notified that the scope exists
                    it.onReuse()
                    require(loadedClass!!.classLoader == it.localClassLoader)
                }
            }
    
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

    import org.gradle.internal.problems.failure.FailureFactory
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.problems.buildtree.ProblemReporter
    import org.gradle.problems.buildtree.ProblemReporter.ProblemConsumer
    import java.io.File
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    class ConfigurationCacheProblems(
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/stmt.go

    }
    
    func (check *Checker) openScopeUntil(node syntax.Node, end syntax.Pos, comment string) {
    	scope := NewScope(check.scope, node.Pos(), end, comment)
    	check.recordScope(node, scope)
    	check.scope = scope
    }
    
    func (check *Checker) closeScope() {
    	check.scope = check.scope.Parent()
    }
    
    func (check *Checker) suspendedCall(keyword string, call syntax.Expr) {
    	code := InvalidDefer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	scopes := []corev1.ScopedResourceSelectorRequirement{}
    	for _, limitedResource := range limitedResources {
    		matched, err := evaluator.MatchingScopes(inputObject, limitedResource.MatchScopes)
    		if err != nil {
    			klog.ErrorS(err, "Error while matching limited Scopes")
    			return []corev1.ScopedResourceSelectorRequirement{}, err
    		}
    		scopes = append(scopes, matched...)
    	}
    	return scopes, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/security/simple-oauth2.md

        그러나 일반적인 사용 사례이므로 더 쉽게 하기 위해 **FastAPI**에서 직접 제공합니다.
    
    ### 폼 데이터 사용하기
    
    !!! 팁
        종속성 클래스 `OAuth2PasswordRequestForm`의 인스턴스에는 공백으로 구분된 긴 문자열이 있는 `scope` 속성이 없고 대신 전송된 각 범위에 대한 실제 문자열 목록이 있는 `scopes` 속성이 있습니다.
    
        이 예제에서는 `scopes`를 사용하지 않지만 필요한 경우, 기능이 있습니다.
    
    이제 폼 필드의 `username`을 사용하여 (가짜) 데이터베이스에서 유저 데이터를 가져옵니다.
    
    해당 사용자가 없으면 "잘못된 사용자 이름 또는 패스워드"라는 오류가 반환됩니다.
    
    오류의 경우 `HTTPException` 예외를 사용합니다:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 22:37:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

    import org.apache.http.protocol.HttpContext;
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.CheckForNull;
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

    import org.gradle.internal.operations.BuildOperationRunner
    import org.gradle.internal.operations.TestBuildOperationRunner
    import org.gradle.internal.service.ServiceRegistry
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceRegistryFactory
    import org.gradle.model.internal.registry.ModelRegistry
    import org.gradle.util.GradleVersion
    import org.gradle.util.Path
    import org.gradle.util.TestUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top