Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for setchr (0.23 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. 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)
  3. 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)
  4. 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)
  5. internal/ringbuffer/ring_buffer.go

    	if len(p) == 0 {
    		return 0, r.setErr(nil, false)
    	}
    	r.mu.Lock()
    	defer r.mu.Unlock()
    	if err := r.err; err != nil {
    		if err == io.EOF {
    			err = ErrWriteOnClosed
    		}
    		return 0, err
    	}
    	wrote := 0
    	for len(p) > 0 {
    		n, err = r.write(p)
    		wrote += n
    		if !r.block || err == nil {
    			break
    		}
    		err = r.setErr(err, true)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. pkg/wasm/imagefetcher_test.go

    		// Push image to the registry.
    		err = crane.Push(img, ref)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// Fetch docker image with digest
    		d, err := img.Digest()
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// Fetch OCI image.
    		binaryFetcher, actualDiget, err := fetcher.PrepareFetch(ref)
    		if err != nil {
    			t.Fatal(err)
    		}
    		actual, err := binaryFetcher()
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 05 04:15:17 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            PropertyAccessorType.of(DeviantBean.class.getMethod("isidore")) == PropertyAccessorType.IS_GETTER
            PropertyAccessorType.fromName('settings') == PropertyAccessorType.SETTER
            PropertyAccessorType.of(DeviantBean.class.getMethod("settings", String)) == PropertyAccessorType.SETTER
        }
    
        def "deviant bean properties are considered as such by Java"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. pkg/wasm/cache.go

    		}
    		wasmLog.Debugf("fetching oci image from %s with options: %v", key.downloadURL, imgFetcherOps)
    		fetcher := NewImageFetcher(ctx, imgFetcherOps)
    		binaryFetcher, dChecksum, err = fetcher.PrepareFetch(u.Host + u.Path)
    		if err != nil {
    			wasmRemoteFetchCount.With(resultTag.Value(manifestFailure)).Increment()
    			return nil, fmt.Errorf("could not fetch Wasm OCI image: %v", err)
    		}
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. pkg/security/security.go

    	// identity.
    	WorkloadKeyCertResourceName = "default"
    
    	// GCE is Credential fetcher type of Google plugin
    	GCE = "GoogleComputeEngine"
    
    	// JWT is a Credential fetcher type that reads from a JWT token file
    	JWT = "JWT"
    
    	// Mock is Credential fetcher type of mock plugin
    	Mock = "Mock" // testing only
    
    	// GoogleCAProvider uses the Google CA for workload certificate signing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/version_test.go

    	os.Exit(m.Run())
    }
    
    func kubernetesReleaseVersionTest(version string) (string, error) {
    	fetcher := func(string, time.Duration) (string, error) {
    		return constants.DefaultKubernetesPlaceholderVersion.String(), nil
    	}
    	return kubernetesReleaseVersion(version, fetcher)
    }
    
    func TestKubernetesReleaseVersion(t *testing.T) {
    	tests := []struct {
    		name           string
    		input          string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top