Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 406 for imposes (0.11 sec)

  1. 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)
  2. 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)
  3. src/cmd/go/internal/modindex/build_read.go

    			}
    			if path == "embed" {
    				hasEmbed = true
    			}
    
    			doc := spec.Doc
    			if doc == nil && len(d.Specs) == 1 {
    				doc = d.Doc
    			}
    			info.imports = append(info.imports, fileImport{path, spec.Pos(), doc})
    		}
    	}
    
    	// Extract directives.
    	for _, group := range info.parsed.Comments {
    		if group.Pos() >= info.parsed.Package {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    	"sync"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/types/objectpath"
    )
    
    const debug = false
    
    // A Set is a set of analysis.Facts.
    //
    // Decode creates a Set of facts by reading from the imports of a given
    // package, and Encode writes out the set. Between these operation,
    // the Import and Export methods will query and update the set.
    //
    // All of Set's methods except String are safe to call concurrently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/go/doc/example.go

    		}
    	}
    
    	// Use unresolved identifiers to determine the imports used by this
    	// example. The heuristic assumes package names match base import
    	// paths for imports w/o renames (should be good enough most of the time).
    	var namedImports []ast.Spec
    	var blankImports []ast.Spec // _ imports
    
    	// To preserve the blank lines between groups of imports, find the
    	// start position of each group, and assign that position to all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/go/build/read.go

    				info.parseErr = scanner.Error{Pos: info.fset.Position(spec.Pos()), Msg: "invalid import path: " + path}
    				info.imports = nil
    				return nil
    			}
    			if path == "embed" {
    				hasEmbed = true
    			}
    
    			doc := spec.Doc
    			if doc == nil && len(d.Specs) == 1 {
    				doc = d.Doc
    			}
    			info.imports = append(info.imports, fileImport{path, spec.Pos(), doc})
    		}
    	}
    
    	// Extract directives.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/ureader.go

    // unified IR export data decoder.
    func readUnifiedPackage(fset *token.FileSet, ctxt *types.Context, imports map[string]*types.Package, input pkgbits.PkgDecoder) *types.Package {
    	pr := pkgReader{
    		PkgDecoder: input,
    
    		fake: fakeFileSet{
    			fset:  fset,
    			files: make(map[string]*fileInfo),
    		},
    
    		ctxt:    ctxt,
    		imports: imports,
    
    		posBases: make([]string, input.NumElems(pkgbits.RelocPosBase)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    		}
    		if len(imports) == 0 {
    			err = fmt.Errorf("fetching %s: no go-import meta tag found in %s", importPrefix, resp.URL)
    		}
    		return setCache(fetchResult{url: url, imports: imports, err: err})
    	})
    	res := resi.(fetchResult)
    	return res.url, res.imports, res.err
    }
    
    type fetchResult struct {
    	url     *urlpkg.URL
    	imports []metaImport
    	err     error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top