Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,159 for chain0 (0.11 sec)

  1. src/cmd/link/internal/ld/testdata/stackcheck/main.s

    TEXT ·startSelf(SB),NOSPLIT,$1000-0
    	RET
    
    // Test reporting of multiple over-the-limit chains
    TEXT ·startChain(SB),NOSPLIT,$16-0
    	CALL ·chain0(SB)
    	CALL ·chain1(SB)
    	CALL ·chain2(SB)
    	RET
    TEXT ·chain0(SB),NOSPLIT,$32-0
    	CALL ·chainEnd(SB)
    	RET
    TEXT ·chain1(SB),NOSPLIT,$48-0 // Doesn't go over
    	RET
    TEXT ·chain2(SB),NOSPLIT,$64-0
    	CALL ·chainEnd(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 21:35:26 UTC 2023
    - 950 bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/testdata/stackcheck/main.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() { asmMain() }
    
    func asmMain()
    
    func startSelf()
    
    func startChain()
    func chain0()
    func chain1()
    func chain2()
    func chainEnd()
    
    func startRec()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:26 UTC 2022
    - 345 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. okhttp/src/test/java/okhttp3/InterceptorTest.kt

        val interceptor1 =
          Interceptor { chainA: Interceptor.Chain ->
            assertThat(chainA.connectTimeoutMillis()).isEqualTo(5000)
            val chainB = chainA.withConnectTimeout(100, TimeUnit.MILLISECONDS)
            assertThat(chainB.connectTimeoutMillis()).isEqualTo(100)
            chainB.proceed(chainA.request())
          }
        val interceptor2 =
          Interceptor { chain: Interceptor.Chain ->
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/chain.go

    // a chain of admission handlers
    type chainAdmissionHandler []Interface
    
    // NewChainHandler creates a new chain handler from an array of handlers. Used for testing.
    func NewChainHandler(handlers ...Interface) chainAdmissionHandler {
    	return chainAdmissionHandler(handlers)
    }
    
    // Admit performs an admission control check using a chain of handlers, and returns immediately on first error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/teststdio/testdata/chain.go

    // license that can be found in the LICENSE file.
    
    //go:build test_run
    
    // Pass numbers along a chain of threads.
    
    package main
    
    import (
    	"runtime"
    	"strconv"
    
    	"cgostdio/stdio"
    )
    
    const N = 10
    const R = 5
    
    func link(left chan<- int, right <-chan int) {
    	// Keep the links in dedicated operating system
    	// threads, so that this program tests coordination
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 914 bytes
    - Viewed (0)
  7. releasenotes/notes/trim-certificate-chain.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 175 bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v6.golden

    -t table -N chain
    -t table -A chain -f foo -b bar
    -t table -I chain 2 -f foo -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 117 bytes
    - Viewed (0)
  9. pkg/util/iptables/testing/fake.go

    	if c, _ := f.Dump.GetChain(table, chain); c != nil {
    		c.Rules = nil
    	}
    	return nil
    }
    
    // DeleteChain is part of iptables.Interface
    func (f *FakeIPTables) DeleteChain(table iptables.Table, chain iptables.Chain) error {
    	t, err := f.Dump.GetTable(table)
    	if err != nil {
    		return err
    	}
    	for i := range t.Chains {
    		if t.Chains[i].Name == chain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

             * @param transforms The remaining transforms which may be prepended to {@code chain} to produce a solution.
             */
            public ChainState(@Nullable ChainNode chain, ImmutableAttributes requested, ImmutableFilteredList<TransformRegistration> transforms) {
                this.chain = chain;
                this.requested = requested;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top