Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for Id (0.04 sec)

  1. pkg/test/framework/components/echo/match/matchers_test.go

    	// TODO implement me
    	panic("implement me")
    }
    
    func (f fakeInstance) Instances() echo.Instances {
    	return echo.Instances{f}
    }
    
    func (f fakeInstance) ID() resource.ID {
    	panic("implement me")
    }
    
    func (f fakeInstance) NamespacedName() echo.NamespacedName {
    	return f.Config().NamespacedName()
    }
    
    func (f fakeInstance) PortForName(name string) echo.Port {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/environment/kube/fake.go

    )
    
    var _ resource.Environment = FakeEnvironment{}
    
    // FakeEnvironment for testing.
    type FakeEnvironment struct {
    	Name        string
    	NumClusters int
    	IDValue     string
    }
    
    func (f FakeEnvironment) ID() resource.ID {
    	return resource.FakeID(f.IDValue)
    }
    
    func (f FakeEnvironment) IsMultiCluster() bool {
    	return false
    }
    
    func (f FakeEnvironment) IsMultiNetwork() bool {
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    type Map struct {
    	Vals         map[ssa.ID]objw.StackMapIndex
    	UnsafeVals   map[ssa.ID]bool
    	UnsafeBlocks map[ssa.ID]bool
    	// The set of live, pointer-containing variables at the DeferReturn
    	// call (only set when open-coded defers are used).
    	DeferReturn objw.StackMapIndex
    }
    
    func (m *Map) reset() {
    	if m.Vals == nil {
    		m.Vals = make(map[ssa.ID]objw.StackMapIndex)
    		m.UnsafeVals = make(map[ssa.ID]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. cmd/bucket-replication-utils.go

    	Version int `json:"version" msg:"v"`
    	// map of remote arn to their resync status for a bucket
    	TargetsMap map[string]TargetReplicationResyncStatus `json:"resyncMap,omitempty" msg:"brs"`
    	ID         int                                      `json:"id" msg:"id"`
    	LastUpdate time.Time                                `json:"lastUpdate" msg:"lu"`
    }
    
    func (rs *BucketReplicationResyncStatus) cloneTgtStats() (m map[string]TargetReplicationResyncStatus) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	cs.ID = cc.nextStreamID
    	cc.nextStreamID += 2
    	cc.streams[cs.ID] = cs
    	if cs.ID == 0 {
    		panic("assigned stream ID 0")
    	}
    }
    
    func (cc *http2ClientConn) forgetStreamID(id uint32) {
    	cc.mu.Lock()
    	slen := len(cc.streams)
    	delete(cc.streams, id)
    	if len(cc.streams) != slen-1 {
    		panic("forgetting unknown stream id")
    	}
    	cc.lastActive = time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    		stats := strings.Split(string(data[:len(data)-len(id)]), "\x00")
    		if len(stats)%2 != 0 {
    			goto Miss
    		}
    		for i := 0; i+2 <= len(stats); i++ {
    			info, err := os.Stat(stats[i])
    			if err != nil || statString(info) != stats[i+1] {
    				goto Miss
    			}
    		}
    		copy(id[:], data[len(data)-len(id):])
    		return id, true
    	Miss:
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. internal/crypto/metadata.go

    	MetaSealedKeyKMS = "X-Minio-Internal-Server-Side-Encryption-Kms-Sealed-Key"
    
    	// MetaKeyID is the KMS master key ID used to generate/encrypt the data
    	// encryption key (DEK).
    	MetaKeyID = "X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id"
    	// MetaDataEncryptionKey is the sealed data encryption key (DEK) received from
    	// the KMS.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pkg/kubelet/userns/userns_manager.go

    		return nil, err
    	}
    
    	if kubeletMappingID%userNsLength != 0 {
    		return nil, fmt.Errorf("kubelet user assigned ID %v is not a multiple of %v", kubeletMappingID, userNsLength)
    	}
    	if kubeletMappingID < userNsLength {
    		// We don't allow to map 0, as security is circumvented.
    		return nil, fmt.Errorf("kubelet user assigned ID %v must be greater or equal to %v", kubeletMappingID, userNsLength)
    	}
    	if kubeletMappingLen%userNsLength != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. schema/relationship.go

    			if len(primaryFields) == 1 {
    				lookUpNames = append(lookUpNames, strings.TrimSuffix(lookUpName, primaryField.Name)+"ID",
    					strings.TrimSuffix(lookUpName, primaryField.Name)+"Id", schema.namer.ColumnName(foreignSchema.Table,
    						strings.TrimSuffix(lookUpName, primaryField.Name)+"ID"))
    			}
    
    			for _, name := range lookUpNames {
    				if f := foreignSchema.LookUpFieldByBindName(field.BindNames, name); f != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/os/exec_plan9.go

    }
    
    // ProcessState stores information about a process, as reported by Wait.
    type ProcessState struct {
    	pid    int              // The process's id.
    	status *syscall.Waitmsg // System-dependent status info.
    }
    
    // Pid returns the process id of the exited process.
    func (p *ProcessState) Pid() int {
    	return p.pid
    }
    
    func (p *ProcessState) exited() bool {
    	return p.status.Exited()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top