Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for BarTest (0.22 sec)

  1. src/cmd/compile/internal/ir/func.go

    	// function literal numbering (e.g., runtime/trace_test.TestTraceSymbolize.func11).
    	funcLitGen  int32
    	rangeLitGen int32
    	goDeferGen  int32
    
    	Label int32 // largest auto-generated label in this function
    
    	Endlineno src.XPos
    	WBPos     src.XPos // position of first write barrier; see SetWBPos
    
    	Pragma PragmaFlag // go:xxx function annotations
    
    	flags bitset16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/assign.go

    		return false
    	}
    
    	mk := call.Args[1].(*ir.MakeExpr)
    	if mk.Cap != nil {
    		return false
    	}
    
    	// y must be either an integer constant or the largest possible positive value
    	// of variable y needs to fit into a uint.
    
    	// typecheck made sure that constant arguments to make are not negative and fit into an int.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/encoding/gob/doc.go

    	} else {
    		u = (uint(i) << 1) // do not complement i, bit 0 is 0
    	}
    	encodeUnsigned(u)
    
    The low bit is therefore analogous to a sign bit, but making it the complement bit
    instead guarantees that the largest negative integer is not a special case. For
    example, -129=^128=(^256>>1) encodes as (FE 01 01).
    
    Floating-point numbers are always sent as a representation of a float64 value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/testing/benchmark.go

    func benchmarkName(name string, n int) string {
    	if n != 1 {
    		return fmt.Sprintf("%s-%d", name, n)
    	}
    	return name
    }
    
    type benchContext struct {
    	match *matcher
    
    	maxLen int // The largest recorded benchmark name.
    	extLen int // Maximum extension length.
    }
    
    // RunBenchmarks is an internal function but exported because it is cross-package;
    // it is part of the implementation of the "go test" command.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/objfile.go

    		// (e.g. integer constants), except for strings and a few
    		// compiler-emitted funcdata. If we dedup a string symbol and
    		// a non-string symbol with the same content, we should keep
    		// the largest alignment.
    		// TODO: maybe the compiler could set the alignment for all
    		// data symbols more carefully.
    		switch {
    		case strings.HasPrefix(s.Name, "go:string."),
    			strings.HasPrefix(name, "type:.namedata."),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils.go

    		return nil, err
    	}
    	return restoredSet, nil
    }
    
    // nextRevision finds the next valid revision number based on revisions. If the length of revisions
    // is 0 this is 1. Otherwise, it is 1 greater than the largest revision's Revision. This method
    // assumes that revisions has been sorted by Revision.
    func nextRevision(revisions []*apps.ControllerRevision) int64 {
    	count := len(revisions)
    	if count <= 0 {
    		return 1
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants.go

    	MinimumAddressesInServiceSubnet = 10
    
    	// MaximumBitsForServiceSubnet defines maximum possible size of the service subnet in terms of bits.
    	// For example, if the value is 20, then the largest supported service subnet is /12 for IPv4 and /108 for IPv6.
    	// Note however that anything in between /108 and /112 will be clamped to /112 due to the limitations of the underlying allocation logic.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    )
    
    const (
    	// StaticEstimatedCostLimit represents the largest-allowed static CEL cost on a per-expression basis.
    	StaticEstimatedCostLimit = 10000000
    	// StaticEstimatedCRDCostLimit represents the largest-allowed total cost for the x-kubernetes-validations rules of a CRD.
    	StaticEstimatedCRDCostLimit = 100000000
    
    	MaxSelectableFields = 8
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    		//	STXVD2X VS33,(R31)(R20)
    		//	ADD $32,R20
    		//	BC 16,0,top
    		// Bytes not moved by this loop are moved
    		// with a combination of the following instructions,
    		// starting with the largest sizes and generating as
    		// many as needed, using the appropriate offset value.
    		//	MOVD  n(R21),R31
    		//	MOVD  R31,n(R20)
    		//	MOVW  n1(R21),R31
    		//	MOVW  R31,n1(R20)
    		//	MOVH  n2(R21),R31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control.go

    	updateMin := 0
    	if set.Spec.UpdateStrategy.RollingUpdate != nil {
    		updateMin = int(*set.Spec.UpdateStrategy.RollingUpdate.Partition)
    	}
    	// we terminate the Pod with the largest ordinal that does not match the update revision.
    	for target := len(replicas) - 1; target >= updateMin; target-- {
    
    		// delete the Pod if it is not already terminating and does not match the update revision.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top