Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for group (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sync/errgroup/errgroup.go

    //
    // A zero Group is valid, has no limit on the number of active goroutines,
    // and does not cancel on error.
    type Group struct {
    	cancel func(error)
    
    	wg sync.WaitGroup
    
    	sem chan token
    
    	errOnce sync.Once
    	err     error
    }
    
    func (g *Group) done() {
    	if g.sem != nil {
    		<-g.sem
    	}
    	g.wg.Done()
    }
    
    // WithContext returns a new Group and an associated Context derived from ctx.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/ecdh.go

    	if err != nil {
    		return nil, err
    	}
    
    	group := C._goboringcrypto_EC_GROUP_new_by_curve_name(nid)
    	if group == nil {
    		return nil, fail("EC_GROUP_new_by_curve_name")
    	}
    	defer C._goboringcrypto_EC_GROUP_free(group)
    	key := C._goboringcrypto_EC_POINT_new(group)
    	if key == nil {
    		return nil, fail("EC_POINT_new")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

            group = {name: name, src: src, sumpos: 0, sumneg: 0, self: 0, places: []};
            groupMap.set(src, group);
            groups.push(group);
          }
          if (stack.Value < 0) {
    	group.sumneg += -stack.Value;
          } else {
    	group.sumpos += stack.Value;
          }
          group.self += (place.Pos == stack.Sources.length-1) ? stack.Value : 0;
          group.places.push(place);
        }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/tables.go

    	8:  {lang: 0x529, script: 0x3c, group: 0x2, distance: 0x4},
    	9:  {lang: 0x529, script: 0x3c, group: 0x82, distance: 0x4},
    	10: {lang: 0x3a, script: 0x0, group: 0x80, distance: 0x5},
    	11: {lang: 0x139, script: 0x0, group: 0x80, distance: 0x5},
    	12: {lang: 0x13e, script: 0x0, group: 0x80, distance: 0x5},
    	13: {lang: 0x3c0, script: 0x0, group: 0x80, distance: 0x5},
    	14: {lang: 0x529, script: 0x3c, group: 0x80, distance: 0x5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    			// There was some kind of serious error reading nm's output.
    			return nil, err
    		}
    
    		// If this symbol is at the same address as the current group, add it to the group.
    		if symAddr == start {
    			names = append(names, name)
    			continue
    		}
    
    		// Otherwise append the current group to the list of symbols.
    		if match := matchSymbol(names, start, symAddr-1, r, address); match != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/ecdsa.go

    		return nil, fail("EC_KEY_new_by_curve_name")
    	}
    	group := C._goboringcrypto_EC_KEY_get0_group(key)
    	pt := C._goboringcrypto_EC_POINT_new(group)
    	if pt == nil {
    		C._goboringcrypto_EC_KEY_free(key)
    		return nil, fail("EC_POINT_new")
    	}
    	bx := bigToBN(X)
    	by := bigToBN(Y)
    	ok := bx != nil && by != nil && C._goboringcrypto_EC_POINT_set_affine_coordinates_GFp(group, pt, bx, by, nil) != 0 &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/nodes.go

    	}
    
    	// Name Type
    	TypeDecl struct {
    		Group      *Group // nil means not part of a group
    		Pragma     Pragma
    		Name       *Name
    		TParamList []*Field // nil means no type parameters
    		Alias      bool
    		Type       Expr
    		decl
    	}
    
    	// NameList Type
    	// NameList Type = Values
    	// NameList      = Values
    	VarDecl struct {
    		Group    *Group // nil means not part of a group
    		Pragma   Pragma
    		NameList []*Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    }
    
    func checkGoFile(pass *analysis.Pass, f *ast.File) {
    	pastCutoff := false
    	for _, group := range f.Comments {
    		// A +build comment is ignored after or adjoining the package declaration.
    		if group.End()+1 >= f.Package {
    			pastCutoff = true
    		}
    
    		// "+build" is ignored within or after a /*...*/ comment.
    		if !strings.HasPrefix(group.List[0].Text, "//") {
    			pastCutoff = true
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/trace/goroutines.go

    		}
    		// Accumulate groups by Name.
    		groupsByName := make(map[string]goroutineGroup)
    		for _, summary := range summaries {
    			group := groupsByName[summary.Name]
    			group.Name = summary.Name
    			group.N++
    			group.ExecTime += summary.ExecTime
    			groupsByName[summary.Name] = group
    		}
    		var groups []goroutineGroup
    		for _, group := range groupsByName {
    			groups = append(groups, group)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/base/timings.go

    			if label != "" {
    				// add phase to existing group, or start a new group
    				l := commonPrefix(group.label, label)
    				if group.size == 1 && l != "" || group.size > 1 && l == group.label {
    					// add to existing group
    					group.label = l
    					group.tot += dt
    					group.size++
    				} else {
    					// start a new group
    					if group.size > 1 {
    						lines.add(prefix+group.label+"subtotal", 1, group.tot, tot, nil)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top