Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 280 for Id (0.08 sec)

  1. src/net/rpc/jsonrpc/server.go

    }
    
    type serverRequest struct {
    	Method string           `json:"method"`
    	Params *json.RawMessage `json:"params"`
    	Id     *json.RawMessage `json:"id"`
    }
    
    func (r *serverRequest) reset() {
    	r.Method = ""
    	r.Params = nil
    	r.Id = nil
    }
    
    type serverResponse struct {
    	Id     *json.RawMessage `json:"id"`
    	Result any              `json:"result"`
    	Error  any              `json:"error"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. internal/crypto/sse-s3.go

    	}
    
    	// There are two possibilities:
    	// - We use a KMS -> There must be non-empty key ID and a KMS data key.
    	// - We use a K/V -> There must be no key ID and no KMS data key.
    	// Otherwise, the caller has passed an invalid argument combination.
    	if keyID == "" && len(kmsKey) != 0 {
    		logger.CriticalIf(context.Background(), errors.New("The key ID must not be empty if a KMS data key is present"))
    	}
    	if keyID != "" && len(kmsKey) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/go/types/objset.go

    // the same name, insert leaves s unchanged and returns alt.
    // Otherwise it inserts obj and returns nil.
    func (s *objset) insert(obj Object) Object {
    	id := obj.Id()
    	if alt := (*s)[id]; alt != nil {
    		return alt
    	}
    	if *s == nil {
    		*s = make(map[string]Object)
    	}
    	(*s)[id] = obj
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. pilot/pkg/xds/deltaadstest.go

    		TypeUrl:       req.TypeUrl,
    		ResponseNonce: req.ResponseNonce,
    		ErrorDetail:   &status.Status{Message: "Test request NACK"},
    	})
    	return resp
    }
    
    func (a *DeltaAdsTest) WithID(id string) *DeltaAdsTest {
    	a.ID = id
    	return a
    }
    
    func (a *DeltaAdsTest) WithType(typeURL string) *DeltaAdsTest {
    	a.Type = typeURL
    	return a
    }
    
    func (a *DeltaAdsTest) WithMetadata(m model.NodeMetadata) *DeltaAdsTest {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/os/user/user.go

    )
    
    // User represents a user account.
    type User struct {
    	// Uid is the user ID.
    	// On POSIX systems, this is a decimal number representing the uid.
    	// On Windows, this is a security identifier (SID) in a string format.
    	// On Plan 9, this is the contents of /dev/user.
    	Uid string
    	// Gid is the primary group ID.
    	// On POSIX systems, this is a decimal number representing the gid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. 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)
  7. internal/s3select/sql/parser_test.go

    		participle.CaseInsensitive("Keyword"),
    		participle.CaseInsensitive("Timeword"),
    	)
    
    	j := JSONPath{}
    	cases := []string{
    		"S3Object",
    		"S3Object.id",
    		"S3Object.book.title",
    		"S3Object.id[1]",
    		"S3Object.id['abc']",
    		"S3Object.id['ab']",
    		"S3Object.words.*.id",
    		"S3Object.words.name[*].val",
    		"S3Object.words.name[*].val[*]",
    		"S3Object.words.name[*].val.*",
    	}
    	for i, tc := range cases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/compile/internal/ssa/looprotate.go

    		f.Blocks[idToIdx[loop.header.ID]] = p
    		f.Blocks[idToIdx[p.ID]] = loop.header
    		idToIdx[loop.header.ID], idToIdx[p.ID] = idToIdx[p.ID], idToIdx[loop.header.ID]
    
    		// Place b after p.
    		for _, b := range after[p.ID] {
    			move[b.ID] = struct{}{}
    		}
    	}
    
    	// Move blocks to their destinations in a single pass.
    	// We rely here on the fact that loop headers must come
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. tests/helper_test.go

    func doCheckPet(t *testing.T, pet Pet, expect Pet, unscoped bool) {
    	if pet.ID != 0 {
    		var newPet Pet
    		if err := db(unscoped).Where("id = ?", pet.ID).First(&newPet).Error; err != nil {
    			t.Fatalf("errors happened when query: %v", err)
    		} else {
    			AssertObjEqual(t, newPet, pet, "ID", "CreatedAt", "UpdatedAt", "DeletedAt", "UserID", "Name")
    			AssertObjEqual(t, newPet, expect, "ID", "CreatedAt", "UpdatedAt", "DeletedAt", "UserID", "Name")
    		}
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top