Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for scope_ (0.5 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         *       fun foo() { // scope5  FirLocalScope - enum entry: Local
         *
         *         // Distance to scopes from <element> in the order from the closest:
         *         //   scope5 -> scope4 -> scope6 -> scope3 -> scope1 -> scope2
         *         <element>
         *
         *       }
         *       companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    }
    
    void AddCtrlEdge(const Scope& scope, Operation a, Operation b) {
      scope.graph()->AddControlEdge(a.node(), b.node());
    }
    
    void AddCtrlEdge(const Scope& scope, Output a, Operation b) {
      AddCtrlEdge(scope, a.op(), b);
    }
    
    void AddCtrlEdge(const Scope& scope, Operation a, Output b) {
      AddCtrlEdge(scope, a, b.op());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    						},
    					},
    				},
    			},
    			expErr: "insufficient quota to match these scopes: [{PriorityClass In [cluster-services]}]",
    		},
    		{
    			description: "Two scopes,BestEffort and PriorityClassIN, in two LimitedResources. Both the scopes matches pod. Pod admit fails because covering quota is missing for PriorityClass scope and BestEffort scope",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    	// Default is "*".
    	//
    	// +optional
    	Scope *ScopeType
    }
    
    // ScopeType specifies the type of scope being used
    type ScopeType string
    
    const (
    	// ClusterScope means that scope is limited to cluster-scoped objects.
    	// Namespace objects are cluster-scoped.
    	ClusterScope ScopeType = "Cluster"
    	// NamespacedScope means that scope is limited to namespaced objects.
    	NamespacedScope ScopeType = "Namespaced"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. src/go/printer/testdata/parser.go

    	// Ordinary identifier scopes
    	pkgScope   *ast.Scope        // pkgScope.Outer == nil
    	topScope   *ast.Scope        // top-most scope; may be pkgScope
    	unresolved []*ast.Ident      // unresolved identifiers
    	imports    []*ast.ImportSpec // list of imports
    
    	// Label scope
    	// (maintained by open/close LabelScope)
    	labelScope  *ast.Scope     // label scope for current function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    	for _, test := range tests {
    		info := Info{Scopes: make(map[syntax.Node]*Scope)}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// number of scopes must match
    		if len(info.Scopes) != len(test.scopes) {
    			t.Errorf("package %s: got %d scopes; want %d", name, len(info.Scopes), len(test.scopes))
    		}
    
    		// scope descriptions must match
    		for node, scope := range info.Scopes {
    			var kind string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    	for _, test := range tests {
    		info := Info{Scopes: make(map[ast.Node]*Scope)}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// number of scopes must match
    		if len(info.Scopes) != len(test.scopes) {
    			t.Errorf("package %s: got %d scopes; want %d", name, len(info.Scopes), len(test.scopes))
    		}
    
    		// scope descriptions must match
    		for node, scope := range info.Scopes {
    			kind := "<unknown node kind>"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Default is "*".
    	//
    	// +optional
    	Scope *ScopeType `json:"scope,omitempty" protobuf:"bytes,4,rep,name=scope"`
    }
    
    // ScopeType specifies a scope for a Rule.
    // +enum
    type ScopeType string
    
    const (
    	// ClusterScope means that scope is limited to cluster-scoped objects.
    	// Namespace objects are cluster-scoped.
    	ClusterScope ScopeType = "Cluster"
    	// NamespacedScope means that scope is limited to namespaced objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            ""                       | "<scope>test</scope>" | ""                       | ""              | MavenScope.Test
            "<scope>compile</scope>" | "<scope>test</scope>" | ""                       | ""              | MavenScope.Test
            "<scope>test</scope>"    | ""                    | ""                       | ""              | MavenScope.Compile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    // only that each ParamRef CAN be evaluated correctly for both cluster scoped
    // and namespace-scoped request kinds, and that the failure action is correctly
    // applied.
    func testParamRefCase(t *testing.T, paramIsClusterScoped, nameIsSet, namespaceIsSet, selectorIsSet, denyNotFound bool) {
    	// Create a cluster scoped and a namespace scoped CRD
    	policy := *denyPolicy
    	binding := *denyBinding
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top