Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 179 for zero (0.09 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	errSegTooLong         = errors.New("segment length too long")
    	errNameTooLong        = errors.New("name too long")
    	errZeroSegLen         = errors.New("zero length segment")
    	errResTooLong         = errors.New("resource length too long")
    	errTooManyQuestions   = errors.New("too many Questions to pack (>65535)")
    	errTooManyAnswers     = errors.New("too many Answers to pack (>65535)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    	if sh == nil {
    		return 0
    	}
    
    	out.Write(ELF_NOTE_BUILDINFO_NAME)
    	out.Write(buildinfo)
    	var zero = make([]byte, 4)
    	out.Write(zero[:int(Rnd(int64(len(buildinfo)), 4)-int64(len(buildinfo)))])
    
    	return int(sh.Size)
    }
    
    func elfwritegobuildid(out *OutBuf) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    			}
    		}
    		// If zero percent is provided explicitly, we should not mirror.
    		return nil
    	// nolint: staticcheck
    	case in.MirrorPercent != nil:
    		if in.MirrorPercent.GetValue() > 0 {
    			return &core.RuntimeFractionalPercent{
    				DefaultValue: translateIntegerToFractionalPercent((int32(in.MirrorPercent.GetValue()))),
    			}
    		}
    		// If zero percent is provided explicitly, we should not mirror.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    		x.mode = invalid
    		return
    	}
    
    	if op == syntax.Div || op == syntax.Rem {
    		// check for zero divisor
    		if (x.mode == constant_ || allInteger(x.typ)) && y.mode == constant_ && constant.Sign(y.val) == 0 {
    			check.error(&y, DivByZero, invalidOp+"division by zero")
    			x.mode = invalid
    			return
    		}
    
    		// check for divisor underflow in complex division (see go.dev/issue/20227)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2.go

    		hex.EncodeToString(x.Signature[:]),
    		time.Unix(0, x.ModTime),
    		x.Flags.String(),
    		x.EcN, x.EcM,
    	)
    }
    
    // matchesNotStrict returns whether x and o have both have non-zero version,
    // their versions match and their type match.
    // If they have zero version, modtime must match.
    func (x xlMetaV2VersionHeader) matchesNotStrict(o xlMetaV2VersionHeader) bool {
    	if x.VersionID == [16]byte{} {
    		return x.VersionID == o.VersionID &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    // DeploymentSpec is the specification of the desired behavior of the Deployment.
    type DeploymentSpec struct {
    	// Number of desired pods. This is a pointer to distinguish between explicit
    	// zero and not specified. Defaults to 1.
    	// +optional
    	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    
    	// Label selector for pods. Existing ReplicaSets whose pods are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message DeleteOptions {
      // The duration in seconds before the object should be deleted. Value must be non-negative integer.
      // The value zero indicates delete immediately. If this value is nil, the default grace period for the
      // specified type will be used.
      // Defaults to a per object value if not specified. zero means delete immediately.
      // +optional
      optional int64 gracePeriodSeconds = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message DeleteOptions {
      // The duration in seconds before the object should be deleted. Value must be non-negative integer.
      // The value zero indicates delete immediately. If this value is nil, the default grace period for the
      // specified type will be used.
      // Defaults to a per object value if not specified. zero means delete immediately.
      // +optional
      optional int64 gracePeriodSeconds = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	VSPLTISB $1, SEL2         // VREPIB $1, SEL2
    	MOVD     $17, COUNT
    	MOVD     COUNT, CTR       // set up ctr
    
    	VSPLTISB $0, X1H // VZERO  X1H
    	VSPLTISB $0, X1L // VZERO  X1L
    	VSPLTISB $0, Y1H // VZERO  Y1H
    	VSPLTISB $0, Y1L // VZERO  Y1L
    	VSPLTISB $0, Z1H // VZERO  Z1H
    	VSPLTISB $0, Z1L // VZERO  Z1L
    
    loop_select:
    
    	// LVXD2X is used here since data alignment doesn't
    	// matter.
    
    	LXVD2X (P1ptr+R0), X2H
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. src/reflect/type.go

    		if ft.Size_ == 0 {
    			lastzero = size
    		}
    
    		fs[i] = f
    	}
    
    	if size > 0 && lastzero == size {
    		// This is a non-zero sized struct that ends in a
    		// zero-sized field. We add an extra byte of padding,
    		// to ensure that taking the address of the final
    		// zero-sized field can't manufacture a pointer to the
    		// next object in the heap. See issue 9401.
    		size++
    		if size == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top