Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for igmp (0.06 sec)

  1. src/go/types/resolver_test.go

    	imported map[string]bool
    }
    
    func (imp *resolveTestImporter) Import(string) (*Package, error) {
    	panic("should not be called")
    }
    
    func (imp *resolveTestImporter) ImportFrom(path, srcDir string, mode ImportMode) (*Package, error) {
    	if mode != 0 {
    		panic("mode must be 0")
    	}
    	if imp.importer == nil {
    		imp.importer = importer.Default().(ImporterFrom)
    		imp.imported = make(map[string]bool)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/format.go

    	forName, ok := check.pkgPathMap[pkg.name]
    	if !ok {
    		forName = make(map[string]bool)
    		check.pkgPathMap[pkg.name] = forName
    	}
    	forName[pkg.path] = true
    
    	for _, imp := range pkg.imports {
    		check.markImports(imp)
    	}
    }
    
    // stripAnnotations removes internal (type) annotations from s.
    func stripAnnotations(s string) string {
    	var buf strings.Builder
    	for _, r := range s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/internal/concurrent/hashtriemap_test.go

    		})
    		for _, s := range testData {
    			expectMissing(t, s, 0)(m.Load(s))
    		}
    	})
    	t.Run("ConcurrentLifecycleUnsharedKeys", func(t *testing.T) {
    		m := newMap()
    
    		gmp := runtime.GOMAXPROCS(-1)
    		var wg sync.WaitGroup
    		for i := range gmp {
    			wg.Add(1)
    			go func(id int) {
    				defer wg.Done()
    
    				makeKey := func(s string) string {
    					return s + "-" + strconv.Itoa(id)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/go/types/format.go

    	forName, ok := check.pkgPathMap[pkg.name]
    	if !ok {
    		forName = make(map[string]bool)
    		check.pkgPathMap[pkg.name] = forName
    	}
    	forName[pkg.path] = true
    
    	for _, imp := range pkg.imports {
    		check.markImports(imp)
    	}
    }
    
    // stripAnnotations removes internal (type) annotations from s.
    func stripAnnotations(s string) string {
    	var buf strings.Builder
    	for _, r := range s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/internal/analysisutil/util.go

    			min = offset
    		} else {
    			max = offset
    		}
    	}
    }
    
    // Imports returns true if path is imported by pkg.
    func Imports(pkg *types.Package, path string) bool {
    	for _, imp := range pkg.Imports() {
    		if imp.Path() == path {
    			return true
    		}
    	}
    	return false
    }
    
    // IsNamedType reports whether t is the named type with the given package path
    // and one of the given names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top