Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 134 for RangeTs (0.16 sec)

  1. src/cmd/internal/obj/link.go

    	GenAbstractFunc    func(fn *LSym)
    	Errors             int
    
    	InParallel    bool // parallel backend phase in effect
    	UseBASEntries bool // use Base Address Selection Entries in location lists and PC ranges
    	IsAsm         bool // is the source assembly language, which may contain surprising idioms (e.g., call tables)
    	Std           bool // is standard library package
    
    	// state for writing objects
    	Text []*LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/fmt/scan.go

    			} else {
    				panic(e)
    			}
    		}
    	}()
    	if f == nil {
    		f = notSpace
    	}
    	s.buf = s.buf[:0]
    	tok = s.token(skipSpace, f)
    	return
    }
    
    // space is a copy of the unicode.White_Space ranges,
    // to avoid depending on package unicode.
    var space = [][2]uint16{
    	{0x0009, 0x000d},
    	{0x0020, 0x0020},
    	{0x0085, 0x0085},
    	{0x00a0, 0x00a0},
    	{0x1680, 0x1680},
    	{0x2000, 0x200a},
    	{0x2028, 0x2029},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	MinDomainsInPodTopologySpread featuregate.Feature = "MinDomainsInPodTopologySpread"
    
    	// owner: @aojea
    	// kep: https://kep.k8s.io/1880
    	// alpha: v1.27
    	//
    	// Enables the dynamic configuration of Service IP ranges
    	MultiCIDRServiceAllocator featuregate.Feature = "MultiCIDRServiceAllocator"
    
    	// owner: @jsafrane
    	// kep: https://kep.k8s.io/3756
    	// alpha: v1.25 (as part of SELinuxMountReadWriteOncePod)
    	// beta: v1.27
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/crypto/x509/name_constraints_test.go

    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"ip:10.0.0.1"},
    		},
    		expectedError: "\"10.0.0.1\" is excluded",
    	},
    
    	// #21: intermediates can further constrain IP ranges.
    	{
    		roots: []constraintsSpec{
    			{
    				bad: []string{"ip:0.0.0.0/1"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{
    					bad: []string{"ip:11.0.0.0/8"},
    				},
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/preflight/checks.go

    	if err != nil {
    		return nil, []error{err}
    	}
    	if proxy != nil {
    		return []error{errors.Errorf("connection to %q uses proxy %q. This may lead to malfunctional cluster setup. Make sure that Pod and Services IP ranges specified correctly as exceptions in proxy configuration", subnet.CIDR, proxy)}, nil
    	}
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/docker.md

    You would of course use the same ideas you read in [About FastAPI versions](versions.md){.internal-link target=_blank} to set the ranges of versions.
    
    For example, your `requirements.txt` could look like:
    
    ```
    fastapi>=0.112.0,<0.113.0
    pydantic>=2.7.0,<3.0.0
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. src/runtime/trace.go

    	lock(&sched.sysmonlock)
    
    	// Grab the minimum page heap address. All Ps are stopped, so it's safe to read this since
    	// nothing can allocate heap memory.
    	trace.minPageHeapAddr = uint64(mheap_.pages.inUse.ranges[0].base.addr())
    
    	// Reset mSyscallID on all Ps while we have them stationary and the trace is disabled.
    	for _, pp := range allp {
    		pp.trace.mSyscallID = -1
    	}
    
    	// Start tracing.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. src/math/big/nat.go

    // mulRange computes the product of all the unsigned integers in the
    // range [a, b] inclusively. If a > b (empty range), the result is 1.
    func (z nat) mulRange(a, b uint64) nat {
    	switch {
    	case a == 0:
    		// cut long ranges short (optimization)
    		return z.setUint64(0)
    	case a > b:
    		return z.setUint64(1)
    	case a == b:
    		return z.setUint64(a)
    	case a+1 == b:
    		return z.mul(nat(nil).setUint64(a), nat(nil).setUint64(b))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.ReservedSystemCPUs, "reserved-cpus", c.ReservedSystemCPUs, "A comma-separated list of CPUs or CPU ranges that are reserved for system and kubernetes usage. This specific list will supersede cpu counts in --system-reserved and --kube-reserved.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    				// for i := range x will only use x once, to compute len(x).
    				// No need to copy it.
    				break
    			}
    			fallthrough
    
    		case k == types.TCHAN, k == types.TSTRING:
    			// chan, string, slice, array ranges use value multiple times.
    			// make copy.
    			r := n.X
    
    			if r.Type().IsString() && r.Type() != types.Types[types.TSTRING] {
    				r = ir.NewConvExpr(base.Pos, ir.OCONV, nil, r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top