Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for vflag (0.21 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Recognize bit tests: a&(1<<b) != 0 for b suitably bounded
    // Note that BTx instructions use the carry bit, so we need to convert tests for zero flag
    // into tests for carry flags.
    // ULT and SETB check the carry flag; they are identical to CS and SETCS. Same, mutatis
    // mutandis, for UGE and SETAE, and CC and SETCC.
    ((NE|EQ) (TESTL (SHLL (MOVLconst [1]) x) y)) => ((ULT|UGE) (BTL x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		t.Fatal(err)
    	}
    	defer StopCPUProfile()
    
    	var flag uint64
    	done := make(chan bool, 1)
    
    	go func() {
    		for atomic.LoadUint64(&flag) == 0 {
    			runtime.Gosched()
    		}
    		done <- true
    	}()
    	time.Sleep(50 * time.Millisecond)
    	atomic.StoreUint64(&flag, 1)
    	<-done
    }
    
    func TestTracebackAll(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            """
            run 'copy'
    
            then:
            file('dest').assertHasDescendants('path/file.txt')
            file('dest/path/file.txt').text == 'f1'
        }
    
        def "copy excludes duplicates when flag is set, stopping at first duplicate"() {
            given:
            file('dir1/path/file.txt').createFile() << 'f1'
            file('dir2/path/file.txt').createFile() << 'f2'
            buildScript '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	preferlinkext []string
    
    	// unknownObjFormat is set to true if we see an object whose
    	// format we don't recognize.
    	unknownObjFormat = false
    
    	theline string
    )
    
    func Lflag(ctxt *Link, arg string) {
    	ctxt.Libdir = append(ctxt.Libdir, arg)
    }
    
    /*
     * Unix doesn't like it when we write to a running (or, sometimes,
     * recently run) binary, so remove the output file before writing it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	PidfdSendSignal(pidfd int, sig Signal, info *Siginfo, flags int) (err error) = SYS_PIDFD_SEND_SIGNAL
    
    //sys	shmat(id int, addr uintptr, flag int) (ret uintptr, err error)
    //sys	shmctl(id int, cmd int, buf *SysvShmDesc) (result int, err error)
    //sys	shmdt(addr uintptr) (err error)
    //sys	shmget(key int, size int, flag int) (id int, err error)
    
    //sys	getitimer(which int, currValue *Itimerval) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    // license that can be found in the LICENSE file.
    
    package netip_test
    
    import (
    	"bytes"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"internal/testenv"
    	"net"
    	. "net/netip"
    	"reflect"
    	"slices"
    	"strings"
    	"testing"
    	"unique"
    )
    
    var long = flag.Bool("long", false, "run long tests")
    
    type uint128 = Uint128
    
    var (
    	mustPrefix = MustParsePrefix
    	mustIP     = MustParseAddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    	r0, _, e1 := syscall_syscall6(libc_mmap_trampoline_addr, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos))
    	ret = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    	r0, _, e1 := syscall_syscall6(libc_mmap_trampoline_addr, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos))
    	ret = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    func NewSlice(elem *Type) *Type {
    	if t := elem.cache.slice; t != nil {
    		if t.Elem() != elem {
    			base.Fatalf("elem mismatch")
    		}
    		if elem.HasShape() != t.HasShape() {
    			base.Fatalf("Incorrect HasShape flag for cached slice type")
    		}
    		return t
    	}
    
    	t := newType(TSLICE)
    	t.extra = Slice{Elem: elem}
    	elem.cache.slice = t
    	if elem.HasShape() {
    		t.SetHasShape(true)
    	}
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    	r0, _, e1 := syscall_syscall6(libc_mmap_trampoline_addr, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flag), uintptr(fd), uintptr(pos))
    	ret = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top