Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 666 for Id (0.04 sec)

  1. src/internal/trace/internal/oldtrace/parser.go

    	EvUserTaskEnd       event.Type = 46 // end of task [timestamp, internal task id, stack]
    	EvUserRegion        event.Type = 47 // trace.WithRegion [timestamp, internal task id, mode(0:start, 1:end), name string]
    	EvUserLog           event.Type = 48 // trace.Log [timestamp, internal id, key string id, stack, value string]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/writebarrier.go

    			if w.Op != OpStoreWB {
    				continue
    			}
    			pos := w.Pos
    			ptr := w.Args[0]
    			val := w.Args[1]
    			if !srcs.contains(val.ID) && needWBsrc(val) {
    				srcs.add(val.ID)
    				addEntry(pos, val)
    			}
    			if !dsts.contains(ptr.ID) && needWBdst(ptr, w.Args[2], zeroes) {
    				dsts.add(ptr.ID)
    				// Load old value from store target.
    				// Note: This turns bad pointer writes into bad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. internal/grid/manager.go

    func (m *Manager) RegisterSingleHandler(id HandlerID, h SingleHandlerFn, subroute ...string) error {
    	if !id.valid() {
    		return ErrUnknownHandler
    	}
    	s := strings.Join(subroute, "/")
    	if debugPrint {
    		fmt.Println("RegisterSingleHandler: ", id.String(), "subroute:", s)
    	}
    
    	if len(subroute) == 0 {
    		if m.handlers.hasAny(id) && !id.isTestHandler() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. security/pkg/pki/util/generate_cert_test.go

    				TTL:         ttl,
    				Org:         "MyOrg",
    			},
    		},
    	}
    
    	for id, c := range cases {
    		t.Run(id, func(t *testing.T) {
    			certOptions := c.certOptions
    			certPem, privPem, err := GenCertKeyFromOptions(certOptions)
    			if err != nil {
    				t.Errorf("[%s] cert/key generation error: %v", id, err)
    			}
    
    			for _, host := range strings.Split(certOptions.Host, ",") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  5. security/pkg/credentialfetcher/plugin/gce_test.go

    			now:            time.Now(),
    			expectedRotate: true,
    		},
    	}
    
    	for id, tc := range testCases {
    		t.Run(id, func(t *testing.T) {
    			p := GCEPlugin{
    				tokenCache: tc.jwt,
    			}
    			if rotate := p.shouldRotate(tc.now); rotate != tc.expectedRotate {
    				t.Errorf("%s, shouldRotate(%s)=%t, expected %t",
    					id, tc.now.String(), rotate, tc.expectedRotate)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 10.1K bytes
    - Viewed (0)
  6. src/cmd/trace/pprof.go

    		}
    		res[g.ID] = []interval{{start: g.StartTime, end: endTime}}
    	}
    	if len(res) == 0 {
    		return nil, fmt.Errorf("failed to find matching goroutines for name: %s", name)
    	}
    	return res, nil
    }
    
    // pprofMatchingRegions returns the time intervals of matching regions
    // grouped by the goroutine id. If the filter is nil, returns nil without an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. cmd/sts-datatypes.go

    	// in Using IAM.
    	//
    	// Arn is a required field
    	Arn string
    
    	// A unique identifier that contains the role ID and the role session name of
    	// the role that is being assumed. The role ID is generated by AWS when the
    	// role is created.
    	//
    	// AssumedRoleId is a required field
    	AssumedRoleID string `xml:"AssumeRoleId"`
    	// contains filtered or unexported fields
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/check.go

    				for _, s := range b.Succs {
    					bb := s.Block()
    					if ln.b2l[b.ID] == nil && ln.b2l[bb.ID] != nil && bb != ln.b2l[bb.ID].header {
    						f.Fatalf("block %s not in loop branches to non-header block %s in loop", b.String(), bb.String())
    					}
    					if ln.b2l[b.ID] != nil && ln.b2l[bb.ID] != nil && bb != ln.b2l[bb.ID].header && !ln.b2l[b.ID].isWithinOrEq(ln.b2l[bb.ID]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/internal/profile/profile.go

    		if functions[f.ID] != nil {
    			return fmt.Errorf("multiple functions with same id: %d", f.ID)
    		}
    		functions[f.ID] = f
    	}
    	locations := make(map[uint64]*Location, len(p.Location))
    	for _, l := range p.Location {
    		if l.ID == 0 {
    			return fmt.Errorf("found location with reserved id=0")
    		}
    		if locations[l.ID] != nil {
    			return fmt.Errorf("multiple locations with same id: %d", l.ID)
    		}
    		locations[l.ID] = l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/internal/trace/summary_test.go

    				{Task: 13, Category: "log2", Message: "do"},
    			},
    			goroutines: []trace.GoID{7},
    		},
    	}
    	for id, summary := range summaries {
    		want, ok := wantTasks[id]
    		if !ok {
    			continue
    		}
    		if id != summary.ID {
    			t.Errorf("ambiguous task %d (or %d?): field likely set incorrectly", id, summary.ID)
    		}
    
    		// Check parent.
    		if want.parent != nil {
    			if summary.Parent == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top