Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 365 for imposes (0.15 sec)

  1. src/go/types/resolver.go

    // into their respective scopes. It also performs imports and associates
    // methods with receiver base type names.
    func (check *Checker) collectObjects() {
    	pkg := check.pkg
    
    	// pkgImports is the set of packages already imported by any package file seen
    	// so far. Used to avoid duplicate entries in pkg.imports. Allocate and populate
    	// it (pkg.imports may not be empty if we are checking test files incrementally).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. cmd/import-boss/main.go

    		to   string
    	}
    
    	adj := make(map[edge]bool)
    	imports := make(map[string]struct{})
    	for from, tos := range in {
    		for _, to := range tos {
    			adj[edge{from, to}] = true
    			imports[to] = struct{}{}
    		}
    	}
    
    	// Warshal's algorithm
    	for k := range in {
    		for i := range in {
    			if !adj[edge{i, k}] {
    				continue
    			}
    			for j := range imports {
    				if adj[edge{i, j}] {
    					continue
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // overlap with each other.
      //
      // An empty list implies all resources and subresources in this API groups apply.
      // +optional
      // +listType=atomic
      repeated string resources = 2;
    
      // ResourceNames is a list of resource instance names that the policy matches.
      // Using this field requires Resources to be specified.
      // An empty list implies that every instance of the resource is matched.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/list/list.go

            // Dependency information
            Imports      []string          // import paths used by this package
            ImportMap    map[string]string // map from source import to ImportPath (identity entries omitted)
            Deps         []string          // all (recursively) imported dependencies
            TestImports  []string          // imports from TestGoFiles
            XTestImports []string          // imports from XTestGoFiles
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            """
    
            then:
            imports == ['DEFINED'].collect { include(it, true) }
    
            and:
            noIncludes()
        }
    
        def "finds multiple imports"() {
            when:
            sourceFile << """
        #import "test1"
        #import "test2"
        #import <system1>
        #import <system2>
        #import DEFINED
    """
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  6. src/image/image.go

    	s := p.Pix[i : i+4 : i+4] // Small cap improves performance, see https://golang.org/issue/27857
    	s[0] = c1.R
    	s[1] = c1.G
    	s[2] = c1.B
    	s[3] = c1.A
    }
    
    func (p *RGBA) SetRGBA64(x, y int, c color.RGBA64) {
    	if !(Point{x, y}.In(p.Rect)) {
    		return
    	}
    	i := p.PixOffset(x, y)
    	s := p.Pix[i : i+4 : i+4] // Small cap improves performance, see https://golang.org/issue/27857
    	s[0] = uint8(c.R >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// The users (by authenticated user name) this rule applies to.
    	// An empty list implies every user.
    	// +optional
    	// +listType=atomic
    	Users []string `json:"users,omitempty" protobuf:"bytes,2,rep,name=users"`
    	// The user groups this rule applies to. A user is considered matching
    	// if it is a member of any of the UserGroups.
    	// An empty list implies every user group.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. src/go/doc/doc.go

    // import. It never returns an error.
    func simpleImporter(imports map[string]*ast.Object, path string) (*ast.Object, error) {
    	pkg := imports[path]
    	if pkg == nil {
    		// note that strings.LastIndex returns -1 if there is no "/"
    		pkg = ast.NewObj(ast.Pkg, path[strings.LastIndex(path, "/")+1:])
    		pkg.Data = ast.NewScope(nil) // required by ast.NewPackage for dot-import
    		imports[path] = pkg
    	}
    	return pkg, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// An empty list implies every user.
    	// +optional
    	Users []string
    	// The user groups this rule applies to. A user is considered matching
    	// if it is a member of any of the UserGroups.
    	// An empty list implies every user group.
    	// +optional
    	UserGroups []string
    
    	// The verbs that match this rule.
    	// An empty list implies every verb.
    	// +optional
    	Verbs []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

        /**
         * Represents [KaScope] containing declarations from imports.
         */
        public sealed class ImportingScope : NonLocalScope()
    
        /**
         * Represents [KaScope] containing declarations from explicit non-star imports.
         */
        public class ExplicitSimpleImportingScope(override val indexInTower: Int) : ImportingScope()
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top