Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,430 for Id (0.04 sec)

  1. src/runtime/traceevent.go

    	traceEvUserTaskBegin   // trace.NewTask [timestamp, internal task ID, internal parent task ID, name string ID, stack ID]
    	traceEvUserTaskEnd     // end of a task [timestamp, internal task ID, stack ID]
    	traceEvUserRegionBegin // trace.{Start,With}Region [timestamp, internal task ID, name string ID, stack ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tests/sql_builder_test.go

    								Value: clause.Column{
    									Table: "companies",
    									Name:  "id",
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    	)
    
    	newDB.Joins("inner join rgs on rgs.id = user.id")
    
    	stmt := newDB.First(&result).Statement
    	str := stmt.SQL.String()
    
    	if !strings.Contains(str, "rgs.id = user.id") {
    		t.Errorf("The second join condition is over written instead of combining")
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/context_test.go

    				Type: "sidecar", IPAddresses: []string{"1.1.1.1"}, DNSDomain: "domain", ID: "id", IstioVersion: model.MaxIstioVersion,
    				Metadata: &model.NodeMetadata{Raw: map[string]any{}},
    			},
    		},
    		{
    			name:     "Capture Arbitrary Metadata",
    			metadata: map[string]any{"foo": "bar"},
    			out: &model.Proxy{
    				Type: "sidecar", IPAddresses: []string{"1.1.1.1"}, DNSDomain: "domain", ID: "id", IstioVersion: model.MaxIstioVersion,
    				Metadata: &model.NodeMetadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    	if m == nil {
    		return false
    	}
    	for i := len(m.list) - 1; i >= 0; i-- {
    		c := &m.list[i]
    		if id&c.mask == c.bits {
    			return c.result
    		}
    	}
    	return false
    }
    
    // Marker returns the match marker text to use on any line reporting details
    // about a match of the given ID.
    // It always returns the hexadecimal format.
    func Marker(id uint64) string {
    	return string(AppendMarker(nil, id))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/stdmethods.go

    			for _, field := range n.Methods.List {
    				for _, id := range field.Names {
    					canonicalMethod(pass, id)
    				}
    			}
    		}
    	})
    	return nil, nil
    }
    
    func canonicalMethod(pass *analysis.Pass, id *ast.Ident) {
    	// Expected input/output.
    	expect, ok := canonicalMethods[id.Name]
    	if !ok {
    		return
    	}
    
    	// Actual input/output
    	sign := pass.TypesInfo.Defs[id].Type().(*types.Signature)
    	args := sign.Params()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. security/pkg/pki/util/keycertbundle_test.go

    		} else if bundle == nil {
    			t.Errorf("%s: the bundle should not be empty", id)
    		} else {
    			cert, key, chain, root := bundle.GetAllPem()
    			if len(cert) != 0 {
    				t.Errorf("%s: certBytes should be empty", id)
    			}
    			if len(key) != 0 {
    				t.Errorf("%s: privateKeyBytes should be empty", id)
    			}
    			if len(chain) != 0 {
    				t.Errorf("%s: certChainBytes should be empty", id)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    		{id: "abcdef", secret: "1234567890123456", expectedError: false, bts: &BootstrapTokenString{ID: "abcdef", Secret: "1234567890123456"}},
    		{id: "123456", secret: "aabbccddeeffgghh", expectedError: false, bts: &BootstrapTokenString{ID: "123456", Secret: "aabbccddeeffgghh"}},
    		{id: "abcdef", secret: "abcdef0123456789", expectedError: false, bts: &BootstrapTokenString{ID: "abcdef", Secret: "abcdef0123456789"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. tests/benchmark_test.go

    )
    
    func BenchmarkCreate(b *testing.B) {
    	user := *GetUser("bench", Config{})
    
    	for x := 0; x < b.N; x++ {
    		user.ID = 0
    		DB.Create(&user)
    	}
    }
    
    func BenchmarkFind(b *testing.B) {
    	user := *GetUser("find", Config{})
    	DB.Create(&user)
    
    	for x := 0; x < b.N; x++ {
    		DB.Find(&User{}, "id = ?", user.ID)
    	}
    }
    
    func BenchmarkScan(b *testing.B) {
    	user := *GetUser("scan", Config{})
    	DB.Create(&user)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 01 03:50:57 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/dom.go

    	n := ID(0)
    	s := make([]*Block, 0, 256)
    	s = append(s, entry)
    
    	for len(s) > 0 {
    		v := s[len(s)-1]
    		s = s[:len(s)-1]
    		// recursing on v
    
    		if semi[v.ID] != 0 {
    			continue // already visited
    		}
    		n++
    		semi[v.ID] = n
    		vertex[n] = v.ID
    		label[v.ID] = v.ID
    		// ancestor[v] already zero
    		for _, e := range succFn(v) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/adstest.go

    	resp := a.ExpectResponse(t)
    	req.ResponseNonce = resp.Nonce
    	req.ErrorDetail = &status.Status{Message: "Test request NACK"}
    	a.Request(t, req)
    	return resp
    }
    
    func (a *AdsTest) WithID(id string) *AdsTest {
    	a.ID = id
    	return a
    }
    
    func (a *AdsTest) WithType(typeURL string) *AdsTest {
    	a.Type = typeURL
    	return a
    }
    
    func (a *AdsTest) WithMetadata(m model.NodeMetadata) *AdsTest {
    	a.metadata = m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top