Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for flts (0.04 sec)

  1. src/crypto/x509/oid.go

    		// never be 0x80
    		if shifted == 0 && b == 0x80 {
    			failed = true
    			return
    		}
    		ret64 |= int64(b & 0x7f)
    		offset++
    		if b&0x80 == 0 {
    			ret = int(ret64)
    			// Ensure that the returned value fits in an int on all platforms
    			if ret64 > math.MaxInt32 {
    				failed = true
    			}
    			return
    		}
    	}
    	failed = true
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/go/ast/walk.go

    	case *Ellipsis:
    		if n.Elt != nil {
    			Walk(v, n.Elt)
    		}
    
    	case *FuncLit:
    		Walk(v, n.Type)
    		Walk(v, n.Body)
    
    	case *CompositeLit:
    		if n.Type != nil {
    			Walk(v, n.Type)
    		}
    		walkList(v, n.Elts)
    
    	case *ParenExpr:
    		Walk(v, n.X)
    
    	case *SelectorExpr:
    		Walk(v, n.X)
    		Walk(v, n.Sel)
    
    	case *IndexExpr:
    		Walk(v, n.X)
    		Walk(v, n.Index)
    
    	case *IndexListExpr:
    		Walk(v, n.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // +optional
      optional string serviceAccount = 9;
    
      // NodeName is a request to schedule this carp onto a specific node. If it is non-empty,
      // the scheduler simply schedules this carp onto that node, assuming that it fits resource
      // requirements.
      // +optional
      optional string nodeName = 10;
    
      // Host networking requested for this carp. Use the host's network namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// NodeName is a request to schedule this carp onto a specific node. If it is non-empty,
    	// the scheduler simply schedules this carp onto that node, assuming that it fits resource
    	// requirements.
    	// +optional
    	NodeName string `json:"nodeName,omitempty" protobuf:"bytes,10,opt,name=nodeName"`
    	// Host networking requested for this carp. Use the host's network namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // +optional
      optional string serviceAccount = 9;
    
      // NodeName is a request to schedule this carp onto a specific node. If it is non-empty,
      // the scheduler simply schedules this carp onto that node, assuming that it fits resource
      // requirements.
      // +optional
      optional string nodeName = 10;
    
      // Host networking requested for this carp. Use the host's network namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/archive/tar/strconv.go

    	// Add leading zeros, but leave room for a NUL.
    	if n := len(b) - len(s) - 1; n > 0 {
    		s = strings.Repeat("0", n) + s
    	}
    	f.formatString(b, s)
    }
    
    // fitsInOctal reports whether the integer x fits in a field n-bytes long
    // using octal encoding with the appropriate NUL terminator.
    func fitsInOctal(n int, x int64) bool {
    	octBits := uint(n-1) * 3
    	return x >= 0 && (n >= 22 || x < 1<<octBits)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// NodeName is a request to schedule this pod onto a specific node. If it is non-empty,
    	// the scheduler simply schedules this pod onto that node, assuming that it fits resource
    	// requirements.
    	// +optional
    	NodeName string `json:"nodeName,omitempty" protobuf:"bytes,10,opt,name=nodeName"`
    	// Host networking requested for this pod. Use the host's network namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/sync/poolqueue.go

    // dequeueLimit is the maximum size of a poolDequeue.
    //
    // This must be at most (1<<dequeueBits)/2 because detecting fullness
    // depends on wrapping around the ring buffer without wrapping around
    // the index. We divide by 4 so this fits in an int on 32-bit.
    const dequeueLimit = (1 << dequeueBits) / 4
    
    // dequeueNil is used in poolDequeue to represent interface{}(nil).
    // Since we use nil to represent empty slots, we need a sentinel value
    // to represent nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top