Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for tvp1 (0.07 sec)

  1. src/cmd/go/testdata/script/version_cshared.txt

    go get rsc.io/fortune
    go build -buildmode=c-shared -o external.so rsc.io/fortune
    go version external.so
    stdout '^external.so: .+'
    go version -m external.so
    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    -- go.mod --
    module m
    
    -- empty.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 416 bytes
    - Viewed (0)
  2. test/nilcheck.go

    	_ = &x[9] // ERROR "nil check"
    	x = y
    	_ = &x[9] // ERROR "nil check"
    }
    
    func f5(m map[string]struct{}) bool {
    	// Existence-only map lookups should not generate a nil check
    	tmp1, tmp2 := m[""] // ERROR "removed nil check"
    	_, ok := tmp1, tmp2
    	return ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 18:41:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/version.txt

    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    # Also test PIE with internal linking.
    [pielinkext] stop
    go build -buildmode=pie -ldflags=-linkmode=internal -o internal.exe rsc.io/fortune
    go version internal.exe
    stdout '^internal.exe: .+'
    go version -m internal.exe
    stdout -buildmode=pie
    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    -- go.mod --
    module m
    
    -- empty.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # check after the link is done for the presence of the file
    # <tmpdir>/go.o, which the Go linker creates prior to kicking off the
    # external linker.
    
    mkdir tmp1
    mkdir tmp2
    mkdir tmp3
    mkdir tmp4
    mkdir tmp5
    
    # First build: no external linking expected
    go build -ldflags=-tmpdir=tmp1 -o $devnull ./noUseOfCgo &
    
    # Second build: using only "runtime/cgo", expect internal linking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    go list -m -versions -retracted example.com/cmd
    stdout v1.9.0
    go install example.com/cmd/a@latest
    go version -m $GOPATH/bin/a$GOEXE
    stdout '^\tmod\texample.com/cmd\tv1.0.0\t'
    go install example.com/cmd/a@v1.9.0
    go version -m $GOPATH/bin/a$GOEXE
    stdout '^\tmod\texample.com/cmd\tv1.9.0\t'
    env GO111MODULE=
    
    # 'go install pkg@version' succeeds when -mod=readonly is set explicitly.
    # Verifies #43278.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    							}
    						}
    						else {
    							tmp2 = _this.get_text(t);
    						}
    						if(a.length > 1) { tmp1.data.push(tmp2); }
    						else { tmp1.data = tmp2; }
    					});
    					li = li.find("> ul > li");
    					if(li.length) { tmp1.children = _this.get_json(li, li_attr, a_attr, true); }
    					result.push(tmp1);
    				});
    				return result;
    			}
    		}
    	});
    })(jQuery);
    //*/
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #define VMULT(x1, x2, out_low, out_hi) \
    	VMULEUW x1, x2, TMP1; \
    	VMULOUW x1, x2, TMP2; \
    	VMRGEW TMP1, TMP2, out_hi; \
    	VMRGOW TMP1, TMP2, out_low
    
    //
    // Vector multiply add word
    //
    //	VMALF  x0, x1, y, out_low
    //	VMALHF x0, x1, y, out_hi
    #define VMULT_ADD(x1, x2, y, one, out_low, out_hi) \
    	VMULEUW  y, one, TMP2; \
    	VMULOUW  y, one, TMP1; \
    	VMULEUW  x1, x2, out_low; \
    	VMULOUW  x1, x2, out_hi; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. cmd/storage-datatypes.go

    	return fi.Erasure.DataBlocks
    }
    
    // Equals checks if fi(FileInfo) matches ofi(FileInfo)
    func (fi FileInfo) Equals(ofi FileInfo) (ok bool) {
    	typ1, ok1 := crypto.IsEncrypted(fi.Metadata)
    	typ2, ok2 := crypto.IsEncrypted(ofi.Metadata)
    	if ok1 != ok2 {
    		return false
    	}
    	if typ1 != typ2 {
    		return false
    	}
    	if fi.IsCompressed() != ofi.IsCompressed() {
    		return false
    	}
    	if !fi.TransitionInfoEquals(ofi) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. test/inline.go

    	return x + y
    }
    
    func j(x int) int { // ERROR "can inline j"
    	switch {
    	case x > 0:
    		return x + 2
    	default:
    		return x + 1
    	}
    }
    
    func f2() int { // ERROR "can inline f2"
    	tmp1 := h
    	tmp2 := tmp1
    	return tmp2(0) // ERROR "inlining call to h"
    }
    
    var abc = errors.New("abc") // ERROR "inlining call to errors.New"
    
    var somethingWrong error
    
    // local closures can be inlined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/bench_test.go

    			decoder := serializer.NewCodecFactory(scheme).UniversalDecoder(test.gvk.GroupVersion())
    			structured, err := runtime.Decode(decoder, test.obj)
    			if err != nil {
    				b.Fatal(err)
    			}
    			tv1, err := fakeTypeConverter.ObjectToTyped(structured)
    			if err != nil {
    				b.Errorf("Error in ObjectToTyped: %v", err)
    			}
    			tv2, err := fakeTypeConverter.ObjectToTyped(structured)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top