Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for setchr (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            models[":"][3].message == "fetch2 It works from project :"
    
    
            when:
            executer.withArguments(ENABLE_CLI)
            runBuildAction(new FetchParameterizedCustomModelForEachProject(["fetch1", "fetch2", "fetch1", "fetch2"]))
    
            then:
            fixture.assertStateLoaded()
            outputDoesNotContain("configuring root")
            outputDoesNotContain("creating model")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. security/pkg/credentialfetcher/fetcher.go

    		if jwtPath == "" {
    			return nil, nil // no cred fetcher - using certificates only
    		}
    		return plugin.CreateTokenPlugin(jwtPath), nil
    	case security.Mock: // for test only
    		return plugin.CreateMockPlugin("test_token"), nil
    	default:
    		return nil, fmt.Errorf("invalid credential fetcher type %s", credtype)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 07 22:21:41 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/promise.go

    	p := &promise{
    		doneCtx: doneCtx,
    		doneVal: doneVal,
    		setCh:   make(chan struct{}),
    	}
    	if initial != nil {
    		p.Set(initial)
    	}
    	return p
    }
    
    func (p *promise) Get() interface{} {
    	select {
    	case <-p.setCh:
    	case <-p.doneCtx.Done():
    		p.Set(p.doneVal)
    	}
    	return p.value
    }
    
    func (p *promise) Set(value interface{}) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 19:19:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. pkg/kube/krt/fetch.go

    	"istio.io/istio/pkg/slices"
    )
    
    func FetchOne[T any](ctx HandlerContext, c Collection[T], opts ...FetchOption) *T {
    	res := Fetch[T](ctx, c, opts...)
    	switch len(res) {
    	case 0:
    		return nil
    	case 1:
    		return &res[0]
    	default:
    		panic("FetchOne found for more than 1 item")
    	}
    }
    
    func Fetch[T any](ctx HandlerContext, cc Collection[T], opts ...FetchOption) []T {
    	h := ctx.(registerDependency)
    	c := cc.(internalCollection[T])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. test/codegen/bool.go

    	// ppc64x/power8:"CMP","ISEL",-"SETBC\tCR0EQ"
    	b := x == y
    	return b
    }
    func TestSetNeq64(x uint64, y uint64) bool {
    	// ppc64x/power10:"SETBCR\tCR0EQ",-"ISEL"
    	// ppc64x/power9:"CMP","ISEL",-"SETBCR\tCR0EQ"
    	// ppc64x/power8:"CMP","ISEL",-"SETBCR\tCR0EQ"
    	b := x != y
    	return b
    }
    func TestSetLt64(x uint64, y uint64) bool {
    	// ppc64x/power10:"SETBC\tCR0GT",-"ISEL"
    	// ppc64x/power9:"CMP","ISEL",-"SETBC\tCR0GT"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 22:12:32 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. pkg/wasm/httpfetcher_test.go

    				c.handler(w, r, gotNumRequest)
    				gotNumRequest++
    			}))
    			defer ts.Close()
    			fetcher := NewHTTPFetcher(DefaultHTTPRequestTimeout, DefaultHTTPRequestMaxRetries)
    			fetcher.initialBackoff = time.Microsecond
    			ctx, cancel := context.WithTimeout(context.Background(), c.timeout)
    			defer cancel()
    			b, err := fetcher.Fetch(ctx, ts.URL, false)
    			if c.wantNumRequest != gotNumRequest {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/version.go

    		// Fetch version from the internet.
    		url := fmt.Sprintf("%s/%s.txt", bucketURL, versionLabel)
    		body, err := fetcher(url, getReleaseVersionTimeout)
    		if err != nil {
    			if clientVersionErr == nil {
    				// Handle air-gapped environments by falling back to the client version.
    				klog.Warningf("could not fetch a Kubernetes version from the internet: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/GradleBuild.java

         *
         * @param dir The project directory. Should not be null.
         * @since 4.0
         */
        public void setDir(File dir) {
            setDir((Object) dir);
        }
    
        /**
         * Sets the project directory for the build.
         *
         * @param dir The project directory. Should not be null.
         */
        public void setDir(Object dir) {
            getStartParameter().setCurrentDir(getProject().file(dir));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    (ISEL [a] (MOVDconst [0]) y z) => (ISELZ [a^0x4] y z)
    
    // SETBC, SETBCR is supported on ISA 3.1(Power10) and newer, use ISELZ for
    // older targets
    (SETBC [2] cmp) && buildcfg.GOPPC64 <= 9 => (ISELZ [2] (MOVDconst [1]) cmp)
    (SETBCR [2] cmp) && buildcfg.GOPPC64 <= 9 => (ISELZ [6] (MOVDconst [1]) cmp)
    (SETBC [0] cmp) && buildcfg.GOPPC64 <= 9 => (ISELZ [0] (MOVDconst [1]) cmp)
    (SETBCR [0] cmp) && buildcfg.GOPPC64 <= 9 => (ISELZ [4] (MOVDconst [1]) cmp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. src/internal/bytealg/indexbyte_wasm.s

    	I64Load b_len+8(FP)
    	I32WrapI64
    	Call memchr<>(SB)
    	I64ExtendI32S
    	Set R0
    
    	Get SP
    	I64Const $-1
    	Get R0
    	I64Load b_base+0(FP)
    	I64Sub
    	Get R0
    	I64Eqz $0
    	Select
    	I64Store ret+32(FP)
    
    	RET
    
    TEXT ·IndexByteString(SB), NOSPLIT, $0-32
    	Get SP
    	I64Load s_base+0(FP)
    	I32WrapI64
    	I32Load8U c+16(FP)
    	I64Load s_len+8(FP)
    	I32WrapI64
    	Call memchr<>(SB)
    	I64ExtendI32S
    	Set R0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 03:59:19 UTC 2019
    - 2.5K bytes
    - Viewed (0)
Back to top