Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 231 for RangeTs (0.12 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/apis/apps/types.go

    type ReplicaSetConditionType string
    
    // These are valid conditions of a replica set.
    const (
    	// ReplicaSetReplicaFailure is added in a replica set when one of its pods fails to be created
    	// due to insufficient quota, limit ranges, pod security policy, node selectors, etc. or deleted
    	// due to kubelet being down or finalizers are failing.
    	ReplicaSetReplicaFailure ReplicaSetConditionType = "ReplicaFailure"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/net/MediaType.java

    import javax.annotation.CheckForNull;
    
    /**
     * Represents an <a href="http://en.wikipedia.org/wiki/Internet_media_type">Internet Media Type</a>
     * (also known as a MIME Type or Content Type). This class also supports the concept of media ranges
     * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">defined by HTTP/1.1</a>.
     * As such, the {@code *} character is treated as a wildcard and is used to represent any acceptable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  8. 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)
  9. guava/src/com/google/common/net/MediaType.java

    import javax.annotation.CheckForNull;
    
    /**
     * Represents an <a href="http://en.wikipedia.org/wiki/Internet_media_type">Internet Media Type</a>
     * (also known as a MIME Type or Content Type). This class also supports the concept of media ranges
     * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">defined by HTTP/1.1</a>.
     * As such, the {@code *} character is treated as a wildcard and is used to represent any acceptable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  10. 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)
Back to top