Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 593 for Id (0.02 sec)

  1. src/crypto/tls/boring_test.go

    			t.Errorf("client offered disallowed version %#x", v)
    		}
    	}
    	for _, id := range hello.cipherSuites {
    		if !isBoringCipherSuite(id) {
    			t.Errorf("client offered disallowed suite %#x", id)
    		}
    	}
    	for _, id := range hello.supportedCurves {
    		if !isBoringCurve(id) {
    			t.Errorf("client offered disallowed curve %d", id)
    		}
    	}
    	for _, sigHash := range hello.supportedSignatureAlgorithms {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    			if found {
    				// add the container
    				e.SharedContainers = append(e.SharedContainers, c.container.ID)
    				continue
    			}
    
    			uniqueEndpoints[stat.EndpointId] = &hcsshim.HNSEndpoint{
    				Name:             stat.EndpointId,
    				Id:               stat.EndpointId,
    				SharedContainers: []string{c.container.ID},
    			}
    		}
    	}
    
    	eps := []hcsshim.HNSEndpoint{}
    	for _, ep := range uniqueEndpoints {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. internal/event/target/postgresql.go

    		queueDir := filepath.Join(args.QueueDir, storePrefix+"-postgresql-"+id)
    		queueStore = store.NewQueueStore[event.Event](queueDir, args.QueueLimit, event.StoreExtension)
    		if err := queueStore.Open(); err != nil {
    			return nil, fmt.Errorf("unable to initialize the queue store of PostgreSQL `%s`: %w", id, err)
    		}
    	}
    
    	target := &PostgreSQLTarget{
    		id:         event.TargetID{ID: id, Name: "postgresql"},
    		args:       args,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/logic_test.go

    		{"x&x", func(x int64) int64 { return x & x }, id},
    		{"x&0", func(x int64) int64 { return x & 0 }, zero},
    		{"x&-1", func(x int64) int64 { return x & -1 }, id},
    		{"x^x", func(x int64) int64 { return x ^ x }, zero},
    		{"x^0", func(x int64) int64 { return x ^ 0 }, id},
    		{"x^-1", func(x int64) int64 { return x ^ -1 }, func(x int64) int64 { return ^x }},
    		{"x+0", func(x int64) int64 { return x + 0 }, id},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/cache.go

    	}
    }
    
    // Get looks up the action ID in the cache,
    // returning the corresponding output ID and file size, if any.
    // Note that finding an output ID does not guarantee that the
    // saved file for that output ID is still available.
    func (c *DiskCache) Get(id ActionID) (Entry, error) {
    	if verify {
    		return Entry{}, &entryNotFoundError{Err: errVerifyMode}
    	}
    	return c.get(id)
    }
    
    type Entry struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/internal/trace/event/go122/event.go

    	EvUserTaskBegin   // trace.NewTask [timestamp, internal task ID, internal parent task ID, name string ID, stack ID]
    	EvUserTaskEnd     // end of a task [timestamp, internal task ID, stack ID]
    	EvUserRegionBegin // trace.{Start,With}Region [timestamp, internal task ID, name string ID, stack ID]
    	EvUserRegionEnd   // trace.{End,With}Region [timestamp, internal task ID, name string ID, stack ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    type locationIDMap struct {
    	dense  []*Location          // indexed by id for id < len(dense)
    	sparse map[uint64]*Location // indexed by id for id >= len(dense)
    }
    
    func makeLocationIDMap(n int) locationIDMap {
    	return locationIDMap{
    		dense:  make([]*Location, n),
    		sparse: map[uint64]*Location{},
    	}
    }
    
    func (lm locationIDMap) get(id uint64) *Location {
    	if id < uint64(len(lm.dense)) {
    		return lm.dense[int(id)]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top