Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 268 for TV (0.02 sec)

  1. src/hash/test_cases.txt

    Give me a rock, paper and scissors and I will move the world.  CCFestoon
    If the enemy is within range, then so are you.
    It's well we cannot hear the screams/That we create in others' dreams.
    You remind me of a TV show, but that's all right: I watch it anyway.
    C is as portable as Stonehedge!!
    Even if I could be Shakespeare, I think I should still choose to be Faraday. - A. Huxley
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    	return
    }
    
    //sysnb	gettimeofday(tv *timeval_zos) (err error)
    
    func Gettimeofday(tv *Timeval) (err error) {
    	var tvz timeval_zos
    	err = gettimeofday(&tvz)
    	tv.Sec = tvz.Sec
    	tv.Usec = int64(tvz.Usec)
    	return
    }
    
    func Time(t *Time_t) (tt Time_t, err error) {
    	var tv Timeval
    	err = Gettimeofday(&tv)
    	if err != nil {
    		return 0, err
    	}
    	if t != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/syscall/syscall_aix.go

    	s := uint64(len(buf))
    	return readlink(path, buf, s)
    }
    
    //sys	utimes(path string, times *[2]Timeval) (err error)
    
    func Utimes(path string, tv []Timeval) error {
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    //sys	utimensat(dirfd int, path string, times *[2]Timespec, flag int) (err error)
    
    func UtimesNano(path string, ts []Timespec) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    					// This port is a named target port, look it up
    					tv, ok := p.Ports[named.TargetPortName]
    					if !ok {
    						// We needed an explicit port, but didn't find one - skip this port
    						continue
    					}
    					targetPort = tv
    				}
    			} else {
    				// ServiceEntry has no explicit named targetPorts; targetPort only allows a number
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    	}
    }
    
    func predString(tv TypeAndValue) string {
    	var buf strings.Builder
    	pred := func(b bool, s string) {
    		if b {
    			if buf.Len() > 0 {
    				buf.WriteString(", ")
    			}
    			buf.WriteString(s)
    		}
    	}
    
    	pred(tv.IsVoid(), "void")
    	pred(tv.IsType(), "type")
    	pred(tv.IsBuiltin(), "builtin")
    	pred(tv.IsValue() && tv.Value != nil, "const")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    		if _, ok := astutil.Unparen(star.X).(*ast.CallExpr); ok {
    			// A call may return a pointer to a zero value.
    			return nil
    		}
    	}
    	if tv, ok := pass.TypesInfo.Types[x]; ok && tv.IsValue() {
    		return lockPath(pass.Pkg, tv.Type, nil)
    	}
    	return nil
    }
    
    // lockPath returns a typePath describing the location of a lock value
    // contained in typ. If there is no contained lock, it returns nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux.go

    }
    
    func Futimesat(dirfd int, path string, tv []Timeval) (err error) {
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return futimesat(dirfd, path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    }
    
    func Futimes(fd int, tv []Timeval) (err error) {
    	// Believe it or not, this is the best we can do on Linux
    	// (and is what glibc does).
    	return Utimes("/proc/self/fd/"+itoa.Itoa(fd), tv)
    }
    
    const ImplementsGetwd = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    func Utimes(path string, tv []Timeval) error {
    	if tv == nil {
    		err := utimensat(AT_FDCWD, path, nil, 0)
    		if err != ENOSYS {
    			return err
    		}
    		return utimes(path, nil)
    	}
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	var ts [2]Timespec
    	ts[0] = NsecToTimespec(TimevalToNsec(tv[0]))
    	ts[1] = NsecToTimespec(TimevalToNsec(tv[1]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. src/syscall/syscall_solaris.go

    	return mapper.Mmap(fd, offset, length, prot, flags)
    }
    
    func Munmap(b []byte) (err error) {
    	return mapper.Munmap(b)
    }
    
    func Utimes(path string, tv []Timeval) error {
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	return utimes(path, (*[2]Timeval)(unsafe.Pointer(&tv[0])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. test/convinline.go

    				"1.5",
    				"1e38",
    				"3.40282346638528859811704183484516925440e+38")
    		}
    		for _, t2 := range types {
    			for _, x := range inputs {
    				code := fmt.Sprintf("%s_to_%s(%s)", t1, t2, x)
    				fmt.Fprintf(&prog, "\tv%d = %s\n", len(outputs), code)
    				exprs = append(exprs, code)
    				outputs = append(outputs, convert(x, t1, t2))
    			}
    		}
    	}
    	fmt.Fprintf(&prog, ")\n\n")
    	fmt.Fprintf(&prog, "func main() {\n\tok := true\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 13:46:05 UTC 2022
    - 4.7K bytes
    - Viewed (0)
Back to top