Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,101 for chains (0.14 sec)

  1. test/syntax/chan.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type xyz struct {
        ch chan
    } // ERROR "unexpected .*}.* in channel type|missing channel element type"
    
    func Foo(y chan) { // ERROR "unexpected .*\).* in channel type|missing channel element type"
    }
    
    func Bar(x chan, y int) { // ERROR "unexpected comma in channel type|missing channel element type"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 492 bytes
    - Viewed (0)
  2. src/runtime/chan.go

    	dataqsiz uint           // size of the circular queue
    	buf      unsafe.Pointer // points to an array of dataqsiz elements
    	elemsize uint16
    	closed   uint32
    	timer    *timer // timer feeding this chan
    	elemtype *_type // element type
    	sendx    uint   // send index
    	recvx    uint   // receive index
    	recvq    waitq  // list of recv waiters
    	sendq    waitq  // list of send waiters
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. samples/certs/cert-chain-alt-2.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)
  4. manifests/charts/istio-cni/values.yaml

        # Custom annotations on pod level, if you need them
        podAnnotations: {}
    
        # Deploy the config files as plugin chain (value "true") or as standalone files in the conf dir (value "false")?
        # Some k8s flavors (e.g. OpenShift) do not support the chain approach, set to false if this is the case
        chained: true
    
        # Custom configuration happens based on the CNI provider.
        # Possible values: "default", "multus"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

                it.get("specialItem") == null
            }
        }
    
        def "all(Action) respects chained filtering"() {
            expect:
            accessedBy { map, action -> map.withType(specialItemClass).all(action) } == ["specialItem"]
        }
    
        def "all(DeferredModelAction) respects chained filtering"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/chan.go

    func NewChan(dir ChanDir, elem Type) *Chan {
    	return &Chan{dir: dir, elem: elem}
    }
    
    // Dir returns the direction of channel c.
    func (c *Chan) Dir() ChanDir { return c.dir }
    
    // Elem returns the element type of channel c.
    func (c *Chan) Elem() Type { return c.elem }
    
    func (c *Chan) Underlying() Type { return c }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 01 22:17:50 UTC 2021
    - 910 bytes
    - Viewed (0)
  7. security/pkg/pki/testdata/multilevelpki/ecc-int-cert-chain.pem

    jacob-delgado <******@****.***> 1588995233 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 09 03:33:53 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. security/pkg/pki/testdata/multilevelpki/ecc-int2-cert-chain.pem

    jacob-delgado <******@****.***> 1588995233 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 09 03:33:53 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loadpe/seh.go

    	})
    	if idx == xrelsCount {
    		return 0
    	}
    	if isChained {
    		// The third relocations references the next .xdata entry in the chain, recurse.
    		idx += 2
    		if idx >= xrelsCount {
    			return 0
    		}
    		r := xrels.At(idx)
    		return findHandlerInXDataAMD64(ldr, r.Sym(), r.Add())
    	}
    	return xrels.At(idx).Sym()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 16:20:28 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pkg/util/iptables/testing/fake_test.go

    	}
    	existed, err = fake.EnsureChain(iptables.TableNAT, iptables.Chain("KUBE-TEST"))
    	if err != nil {
    		t.Errorf("unexpected error creating chain: %v", err)
    	} else if !existed {
    		t.Errorf("wrong return value from EnsureChain with existing chain")
    	}
    
    	// ChainExists
    	exists, err := fake.ChainExists(iptables.TableNAT, iptables.Chain("KUBE-TEST"))
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top