Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 142 for Id (0.08 sec)

  1. 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)
  2. 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)
  3. internal/grid/connection.go

    }
    
    func gridLogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    	logger.LogOnceIf(ctx, "grid", err, id, errKind...)
    }
    
    // A Connection is a remote connection.
    // There is no distinction externally whether the connection was initiated from
    // this server or from the remote.
    type Connection struct {
    	// NextID is the next ID that can be used (atomic).
    	NextID uint64
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. 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)
  5. cmd/storage-datatypes_gen.go

    		return
    	}
    	z.MountPath, err = dc.ReadString()
    	if err != nil {
    		err = msgp.WrapError(err, "MountPath")
    		return
    	}
    	z.ID, err = dc.ReadString()
    	if err != nil {
    		err = msgp.WrapError(err, "ID")
    		return
    	}
    	z.Rotational, err = dc.ReadBool()
    	if err != nil {
    		err = msgp.WrapError(err, "Rotational")
    		return
    	}
    	err = z.Metrics.DecodeMsg(dc)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/options.go

    	for _, cipher := range tls.InsecureCipherSuites() {
    		acceptedCiphers[cipher.Name] = cipher.ID
    	}
    	for _, cipher := range tls.CipherSuites() {
    		acceptedCiphers[cipher.Name] = cipher.ID
    	}
    	return acceptedCiphers
    }
    
    // TLSCipherSuites returns a list of cipher suite IDs from the cipher suite names passed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/os/exec_posix.go

    }
    
    // ProcessState stores information about a process, as reported by Wait.
    type ProcessState struct {
    	pid    int                // The process's id.
    	status syscall.WaitStatus // System-dependent status info.
    	rusage *syscall.Rusage
    }
    
    // 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.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards.go

    )
    
    // shardRegistry is a simplified interface for registries that can produce a shard key
    type shardRegistry interface {
    	Cluster() cluster.ID
    	Provider() provider.ID
    }
    
    // ShardKeyFromRegistry computes the shard key based on provider type and cluster id.
    func ShardKeyFromRegistry(instance shardRegistry) ShardKey {
    	return ShardKey{Cluster: instance.Cluster(), Provider: instance.Provider()}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/build/relnote/links.go

    // If so, it returns the identifier, which is a prefix of s, and ok == true.
    // Otherwise it returns "", false.
    // The caller should skip over the first len(id) bytes of s
    // before further processing.
    func ident(s string) (id string, ok bool) {
    	// Scan [\pL_][\pL_0-9]*
    	n := 0
    	for n < len(s) {
    		if c := s[n]; c < utf8.RuneSelf {
    			if isIdentASCII(c) && (n > 0 || c < '0' || c > '9') {
    				n++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    	specContainerList := []v1.Container{}
    	for i := 0; i < numContainers; i++ {
    		id := fmt.Sprintf("%v", i)
    		containerName := fmt.Sprintf("%vcontainer", id)
    		expectedOrder = append(expectedOrder, containerName)
    		cStatus := &kubecontainer.Status{
    			ID:   kubecontainer.BuildContainerID("test", id),
    			Name: containerName,
    		}
    		// Rearrange container statuses
    		if i%2 == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top