Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,430 for Id (0.11 sec)

  1. pkg/test/framework/components/jwt/kube.go

    	return httpsPort
    }
    
    func (s *serverImpl) JwksURI() string {
    	uri := fmt.Sprintf("http://%s:%d/jwks", s.FQDN(), s.HTTPPort())
    	return uri
    }
    
    func (s *serverImpl) ID() resource.ID {
    	return s.id
    }
    
    func (s *serverImpl) Namespace() namespace.Instance {
    	return s.ns
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 23:45:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. tests/associations_belongs_to_test.go

    	}
    
    	if company2.ID == 0 {
    		t.Fatalf("Company's ID should be created")
    	}
    
    	if err := DB.Model(&user2).Association("Manager").Replace(manager2); err != nil {
    		t.Fatalf("Error happened when replace Manager, got %v", err)
    	}
    
    	if manager2.ID == 0 {
    		t.Fatalf("Manager's ID should be created")
    	}
    
    	user.Company = company2
    	user.Manager = manager2
    	user.CompanyID = &company2.ID
    	user.ManagerID = &manager2.ID
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. tests/update_many2many_test.go

    	var user3 User
    	DB.Preload("Languages").Preload("Friends").Find(&user3, "id = ?", user.ID)
    	CheckUser(t, user2, user3)
    
    	if err := DB.Session(&gorm.Session{FullSaveAssociations: true}).Save(&user).Error; err != nil {
    		t.Fatalf("errors happened when update: %v", err)
    	}
    
    	var user4 User
    	DB.Preload("Languages").Preload("Friends").Find(&user4, "id = ?", user.ID)
    	CheckUser(t, user4, user)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top