Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 429 for covers (0.24 sec)

  1. ci/official/README.md

        -   Uses `pycpp.sh`
    -   Presubmit jobs (Run on every GitHub PR)
        -   Uses `pycpp.sh`, `code_check_changed_files.sh`
    
    These "env" files match up with an environment matrix that roughly covers:
    
    -   Different Python versions
    -   Linux, MacOS, and Windows machines (these pool definitions are internal)
    -   x86 and arm64
    -   CPU-only, or with NVIDIA CUDA support (Linux only), or with TPUs
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apihelpers/helpers.go

    		return true
    	case group == "kubernetes.io" || strings.HasSuffix(group, ".kubernetes.io"):
    		return true
    	default:
    		return false
    	}
    
    }
    
    // APIApprovalState covers the various options for API approval annotation states
    type APIApprovalState int
    
    const (
    	// APIApprovalInvalid means the annotation doesn't have an expected value
    	APIApprovalInvalid APIApprovalState = iota
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 9.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate.go

    		case "as":
    			if options.Convert == nil {
    				options.Convert = &schema.GroupVersionKind{}
    			}
    			options.Convert.Kind = v
    		case "g":
    			if options.Convert == nil {
    				options.Convert = &schema.GroupVersionKind{}
    			}
    			options.Convert.Group = v
    		case "v":
    			if options.Convert == nil {
    				options.Convert = &schema.GroupVersionKind{}
    			}
    			options.Convert.Version = v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    	if err != nil {
    		t.Fatalf("couldn't write new embedded certificate: %v", err)
    	}
    
    	// Make sure that CA key is not present during Read() as it is not needed.
    	// This covers testing when the CA is external and not present on the host.
    	_, caKeyPath := pkiutil.PathsForCertAndKey(dirPKI, caName)
    	os.Remove(caKeyPath)
    
    	// Reads back the new certificate embedded in a kubeconfig writer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/events.md

    Because this code is executed before the application **starts** taking requests, and right after it **finishes** handling requests, it covers the whole application **lifespan** (the word "lifespan" will be important in a second 😉).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/compress/gzip/gunzip.go

    			return "", ErrHeader
    		}
    		z.buf[i], err = z.r.ReadByte()
    		if err != nil {
    			return "", err
    		}
    		if z.buf[i] > 0x7f {
    			needConv = true
    		}
    		if z.buf[i] == 0 {
    			// Digest covers the NUL terminator.
    			z.digest = crc32.Update(z.digest, crc32.IEEETable, z.buf[:i+1])
    
    			// Strings are ISO 8859-1, Latin-1 (RFC 1952, section 2.3.1).
    			if needConv {
    				s := make([]rune, 0, i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    === Install and start TeamCity
    
    On the https://www.jetbrains.com/teamcity/download/[TeamCity website] you can pick from a variety of distributions.
    This post uses TeamCity bundled with Tomcat servlet container and covers the evaluation setup of a TeamCity server and a default build agent running on the same machine.
    
    [start=1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. SECURITY.md

    vulnerabilities to the vendor of the affected hardware accelerator.
    
    ## Reporting vulnerabilities
    
    ### Vulnerabilities in TensorFlow
    
    This document covers different use cases for TensorFlow together with comments
    whether these uses were recommended or considered safe, or where we recommend
    some form of isolation when dealing with untrusted data. As a result, this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/context.go

    // that this is a rune with a XOR pattern defined.
    func (c *context) copyXOR() bool {
    	if !c.copy() {
    		return false
    	}
    	if c.info&xorIndexBit == 0 {
    		// Fast path for 6-bit XOR pattern, which covers most cases.
    		c.dst[c.pDst-1] ^= byte(c.info >> xorShift)
    	} else {
    		// Interpret XOR bits as an index.
    		// TODO: test performance for unrolling this loop. Verify that we have
    		// at least two bytes and at most three.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/testing/cover.go

    // It is not covered (yet) by the Go 1 compatibility guidelines.
    type CoverBlock struct {
    	Line0 uint32 // Line number for block start.
    	Col0  uint16 // Column number for block start.
    	Line1 uint32 // Line number for block end.
    	Col1  uint16 // Column number for block end.
    	Stmts uint16 // Number of statements included in this block.
    }
    
    var cover Cover
    
    // Cover records information about test coverage checking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top