Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 579 for chains (0.27 sec)

  1. security/pkg/pki/testdata/multilevelpki/int-cert-chain.pem

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  2. samples/certs/cert-chain-alt.pem

    Greg Hanson <******@****.***> 1702658677 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/stackcheck_test.go

        %d bytes over limit
    `, 1008-limit),
    		"main.startChain": fmt.Sprintf(
    			`main.startChain<0>
        grows 32 bytes, calls main.chain0<0>
            grows 48 bytes, calls main.chainEnd<0>
                grows 1008 bytes
                %d bytes over limit
        grows 32 bytes, calls main.chain2<0>
            grows 80 bytes, calls main.chainEnd<0>
                grows 1008 bytes
                %d bytes over limit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. manifests/charts/UPDATING-CHARTS.md

    # Updating charts and values.yaml
    
    ## Acceptable Pull Requests
    
    Helm charts `values.yaml` represent a complex user facing API that tends to grow uncontrollably over time
    due to design choices in Helm.
    The underlying Kubernetes resources we configure have 1000s of fields; given enough users and bespoke use cases,
    eventually someone will want to customize every one of those fields.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    		return U
    	}
    	ch, ok := U.(*types.Chan)
    	if !ok {
    		return nil // no core type as identical < len(terms) and U is not a channel.
    	}
    	// https://go.dev/ref/spec#Core_types
    	// "the type chan E if T contains only bidirectional channels, or the type chan<- E or
    	// <-chan E depending on the direction of the directional channels present."
    	for chans := identical; chans < len(terms); chans++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. test/syntax/chan1.go

    // errorcheck
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    var c chan int
    var v int
    
    func main() {
    	if c <- v { // ERROR "cannot use c <- v as value|send statement used as value"
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 384 bytes
    - Viewed (0)
  7. test/ken/chan1.go

    const W = 2    // channel buffering
    var h [N]int   // marking of send/recv
    
    func r(c chan int, m int) {
    	for {
    		select {
    		case r := <-c:
    			if h[r] != 1 {
    				println("r",
    					"m=", m,
    					"r=", r,
    					"h=", h[r])
    				panic("fail")
    			}
    			h[r] = 2
    		}
    	}
    }
    
    func s(c chan int) {
    	for n := 0; n < N; n++ {
    		r := n
    		if h[r] != 0 {
    			println("s")
    			panic("fail")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 21:47:04 UTC 2012
    - 879 bytes
    - Viewed (0)
  8. security/pkg/pki/testdata/multilevelpki/int2-cert-chain.pem

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 5.7K bytes
    - Viewed (0)
  9. tests/testdata/certs/dns/cert-chain-unused.pem

    Faseela K <******@****.***> 1686686394 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 13 19:59:54 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. tests/testdata/certs/dns/fake-cert-chain.pem

    Jacek Ewertowski <******@****.***> 1666619920 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 24 13:58:40 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top