Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 171 for setchr (0.15 sec)

  1. src/cmd/compile/internal/ssa/poset.go

    		//      i1r   n2
    		//
    		extra := po.newnode(nil)
    		if (i1^i2)&1 != 0 { // non-deterministic
    			po.setchl(extra, i1r)
    			po.setchr(extra, e2)
    			po.setchr(i1, newedge(extra, false))
    			po.upush(undoSetChr, i1, i1r)
    		} else {
    			po.setchl(extra, i1l)
    			po.setchr(extra, e2)
    			po.setchl(i1, newedge(extra, false))
    			po.upush(undoSetChl, i1, i1l)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    // remotely, and an error.
    func grabProfile(s *source, source string, fetcher plugin.Fetcher, obj plugin.ObjTool, ui plugin.UI, tr http.RoundTripper) (p *profile.Profile, msrc plugin.MappingSources, remote bool, err error) {
    	var src string
    	duration, timeout := time.Duration(s.Seconds)*time.Second, time.Duration(s.Timeout)*time.Second
    	if fetcher != nil {
    		p, src, err = fetcher.Fetch(source, duration, timeout)
    		if err != nil {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/go/internal/modfetch/fetch.go

    Sam Thanawalla <******@****.***> 1716497852 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

      // max_bytes the cache is a pass-through.
      tf_gcs_filesystem::RamFileBlockCache cache1(1, 0, 0, fetcher);
      tf_gcs_filesystem::RamFileBlockCache cache2(0, 1, 0, fetcher);
      tf_gcs_filesystem::RamFileBlockCache cache3(0, 0, 0, fetcher);
      tf_gcs_filesystem::RamFileBlockCache cache4(1000, 1000, 0, fetcher);
      std::vector<char> out;
      TF_EXPECT_OK(ReadCache(&cache1, want_filename, want_offset, want_n, &out));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:57 UTC 2021
    - 23.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top