Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 162 for putscope (0.66 sec)

  1. pkg/ctrlz/topics/scopes.go

    	_ = context.JSONRouter().StrictSlash(true).NewRoute().Methods("GET").Path("/").HandlerFunc(getAllScopes)
    	_ = context.JSONRouter().NewRoute().Methods("GET").Path("/{scope}").HandlerFunc(getScope)
    	_ = context.JSONRouter().NewRoute().Methods("PUT").Path("/{scope}").HandlerFunc(putScope)
    }
    
    func getAllScopes(w http.ResponseWriter, _ *http.Request) {
    	allScopes := log.Scopes()
    
    	scopeInfos := make([]scopeInfo, 0, len(allScopes))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. istioctl/pkg/admin/istiodconfig.go

    	}
    	return nil
    }
    
    func (c *ControlzClient) PutScopes(scopes []*ScopeInfo) error {
    	ch := make(chan struct {
    		err       error
    		scopeName string
    	}, len(scopes))
    	var wg sync.WaitGroup
    	for _, scope := range scopes {
    		wg.Add(1)
    		go func(si *ScopeInfo) {
    			defer wg.Done()
    			err := c.PutScope(si)
    			ch <- struct {
    				err       error
    				scopeName string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf.go

    	}
    	this := curscope
    	curscope++
    	for curscope < int32(len(scopes)) {
    		scope := scopes[curscope]
    		if scope.Parent != this {
    			return curscope
    		}
    
    		if len(scopes[curscope].Vars) == 0 {
    			curscope = putscope(ctxt, s, scopes, curscope, fnabbrev, encbuf)
    			continue
    		}
    
    		if len(scope.Ranges) == 1 {
    			Uleb128put(ctxt, s.Info, DW_ABRV_LEXICAL_BLOCK_SIMPLE)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

                DependencyScope.COMPILE,
                DependencyScope.PROVIDED);
    
        PathScope MAIN_RUNTIME =
                pathScope("main-runtime", ProjectScope.MAIN, DependencyScope.COMPILE, DependencyScope.RUNTIME);
    
        PathScope TEST_COMPILE = pathScope(
                "test-compile",
                ProjectScope.TEST,
                DependencyScope.COMPILE,
                DependencyScope.PROVIDED,
                DependencyScope.TEST_ONLY,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

         */
        public fun getPackageSymbols(nameFilter: KaScopeNameFilter = { true }): Sequence<KaPackageSymbol>
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/go/ast/resolve.go

    	p.error(pos, fmt.Sprintf(format, args...))
    }
    
    func (p *pkgBuilder) declare(scope, altScope *Scope, obj *Object) {
    	alt := scope.Insert(obj)
    	if alt == nil && altScope != nil {
    		// see if there is a conflicting declaration in altScope
    		alt = altScope.Lookup(obj.Name)
    	}
    	if alt != nil {
    		prevDecl := ""
    		if pos := alt.Pos(); pos.IsValid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/scope_pod_test.go

    				{
    					"resource-3": nil,
    				},
    			},
    		},
    	}
    
    	for _, tc := range tcases {
    		podScope := &podScope{
    			scope{
    				hintProviders: tc.hp,
    				policy:        &mockPolicy{},
    				name:          podTopologyScope,
    			},
    		}
    
    		podScope.calculateAffinity(&v1.Pod{})
    		actual := podScope.policy.(*mockPolicy).ph
    		if !reflect.DeepEqual(tc.expected, actual) {
    			t.Errorf("Test Case: %s", tc.name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 12 11:25:55 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModuleBuilderSupport.java

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 21:25:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphEdge.java

                return objectsEqual(version, e.version)
                        && ArtifactScopeEnum.checkScope(scope)
                                .getScope()
                                .equals(ArtifactScopeEnum.checkScope(e.scope).getScope())
                        && depth == e.depth;
            }
            return false;
        }
    
        // ----------------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Dependency.java

        /**
         * The scope of this library. If <code>null</code>, the scope attribute is not added.
         * @since 4.5
         */
        String getScope();
    
        /**
         * The scope of this library. If <code>null</code>, the scope attribute is not added.
         * @since 4.5
         */
        void setScope(String scope);
    
        void addToNode(Node parentNode);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top