Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 593 for Id (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kube/multicluster/secretcontroller.go

    }
    
    func (c *Controller) createRemoteCluster(kubeConfig []byte, clusterID string) (*Cluster, error) {
    	clients, err := c.ClientBuilder(kubeConfig, cluster.ID(clusterID), c.configOverrides...)
    	if err != nil {
    		return nil, err
    	}
    	return &Cluster{
    		ID:     cluster.ID(clusterID),
    		Client: clients,
    		stop:   make(chan struct{}),
    		// for use inside the package, to close on cleanup
    		initialSync:        atomic.NewBool(false),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. security/pkg/server/ca/server_test.go

    		code := s.Code()
    		if code != c.code {
    			t.Errorf("Case %s: expecting code to be (%d) but got (%d): %s", id, c.code, code, s.Message())
    		} else if c.code == codes.OK {
    			if len(response.CertChain) != len(mockCertChain) {
    				t.Errorf("Case %s: expecting cert chain length to be (%d) but got (%d)",
    					id, len(mockCertChain), len(response.CertChain))
    			}
    			for i, v := range response.CertChain {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    					"GT": '>',
    					"LP": '(',
    					"RP": ')',
    				}
    
    				valid := true
    				if len(id) > 2 && id[1] == 'C' && id[2] == '$' {
    					sb.WriteByte(',')
    					id = id[3:]
    				} else if len(id) > 4 && id[1] == 'u' && id[4] == '$' {
    					dig1, ok1 := hexDigit(id[2])
    					dig2, ok2 := hexDigit(id[3])
    					val := (dig1 << 4) | dig2
    					if !ok1 || !ok2 || dig1 > 7 || val < ' ' {
    						valid = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  9. pkg/test/framework/testcontext.go

    	return c.suite.settings
    }
    
    func (c *testContext) Context() context.Context {
    	return c.test.tc
    }
    
    func (c *testContext) TrackResource(r resource.Resource) resource.ID {
    	id := c.suite.allocateResourceID(c.id, r)
    	rid := &resourceID{id: id}
    	c.scope.add(r, rid)
    	return rid
    }
    
    func (c *testContext) GetResource(ref any) error {
    	return c.scope.get(ref)
    }
    
    func (c *testContext) WorkDir() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pkg/kube/multicluster/secretcontroller_test.go

    		{ID: "config", SyncStatus: "syncing"},
    		{ID: "c0", SecretName: "istio-system/s0", SyncStatus: "syncing"},
    		{ID: "c1", SecretName: "istio-system/s1", SyncStatus: "syncing"},
    	})
    	assert.EventuallyEqual(t, func() int { return len(c.component.All()) }, 3)
    
    	// Sync all but one
    	for _, c := range c.component.All() {
    		if c.ID != "c1" {
    			c.Synced.Store(true)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top