Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for startingAt (0.34 sec)

  1. doc/go_spec.html

    <code>iota</code> represents successive untyped integer <a href="#Constants">
    constants</a>. Its value is the index of the respective <a href="#ConstSpec">ConstSpec</a>
    in that constant declaration, starting at zero.
    It can be used to construct a set of related constants:
    </p>
    
    <pre>
    const (
    	c0 = iota  // c0 == 0
    	c1 = iota  // c1 == 1
    	c2 = iota  // c2 == 2
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.18.md

    - The EndpointSlice controller now waits for EndpointSlice and Node caches to be synced before starting. ([#94086](https://github.com/kubernetes/kubernetes/pull/94086), [@robscott](https://github.com/robscott)) [SIG Apps and Network]
    - Upon successful authorization check, an impersonated user is added to the system:authenticated group.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

             This should be rare so we assign lower priority here. Priority is also lower than text/html magics
             for them to be preferred for HTML starting with comment.-->
        <magic priority="30">
          <match value="&lt;!--" type="string" offset="0"/>
        </magic>
        <glob pattern="*.xml"/>
        <glob pattern="*.xsl"/>
        <glob pattern="*.xsd"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.20.md

      - Subtract DaemonSet pods' requests from node allocatable in the denominator while computing node utilization
      - Include taints by condition when determining if a node is unready/still starting
      - Fix `update-vendor.sh` to work on OSX and zsh
      - Add best-effort eviction for DaemonSet pods while scaling down non-empty nodes
      - Add build support for ARM64
      
      ### AliCloud
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    }
    
    func (sc *http2serverConn) processGoAway(f *http2GoAwayFrame) error {
    	sc.serveG.check()
    	if f.ErrCode != http2ErrCodeNo {
    		sc.logf("http2: received GOAWAY %+v, starting graceful shutdown", f)
    	} else {
    		sc.vlogf("http2: received GOAWAY %+v, starting graceful shutdown", f)
    	}
    	sc.startGracefulShutdownInternal()
    	// http://tools.ietf.org/html/rfc7540#section-6.8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      // Parse the "k" parameter. MatrixDiagPartV3 allows to specify the diagonal(s)
      // with k. This can be either a single value (for a single diagonal) or a
      // tuple of two values (starting and ending diagonal, for a band).
      LogicalResult ExtractK(TF::MatrixDiagPartV3Op op, int64_t (*k)[2]) const {
        DenseIntElementsAttr kattr;
        if (!matchPattern(op.getK(), m_Constant(&kattr))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.13.md

    * Re-issue Allocate grpc calls before starting a container that requests device-plugin resources if the cached state is missing. ([#73824](https://github.com/kubernetes/kubernetes/pull/73824), [@jiayingz](https://github.com/jiayingz))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    	} else {
    		if !strings.HasPrefix(iscsi.IQN, "iqn") && !strings.HasPrefix(iscsi.IQN, "eui") && !strings.HasPrefix(iscsi.IQN, "naa") {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("iqn"), iscsi.IQN, "must be valid format starting with iqn, eui, or naa"))
    		} else if strings.HasPrefix(iscsi.IQN, "iqn") && !iscsiInitiatorIqnRegex.MatchString(iscsi.IQN) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("iqn"), iscsi.IQN, "must be valid format"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.6.md

    ### Internal Storage Layer
    * upgrade to etcd3 prior to upgrading to 1.6 **OR** explicitly specify `--storage-backend=etcd2 --storage-media-type=application/json` when starting the apiserver
    
    ### Node Components
    * **Kubelet with the Docker-CRI implementation**
      * The Docker-CRI implementation is enabled by default.
      * It is not compatible with containers created by older Kubelets. It is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  10. ChangeLog.md

    ### Tools. Daemon
    
    - [`KT-64283`](https://youtrack.jetbrains.com/issue/KT-64283) Configure correct JVM arguments when starting the daemon
    
    ### Tools. Fleet. ObjC Export
    
    #### Fixes
    
    - [`KT-66695`](https://youtrack.jetbrains.com/issue/KT-66695) Move `analysis-api-klib-reader` package into 'o.j.k.native.analysis.api`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top