Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 667 for minval (0.14 sec)

  1. pkg/apis/autoscaling/v1/zz_generated.conversion.go

    	// WARNING: in.Target requires manual conversion: does not exist in peer-type
    	// WARNING: in.MetricName requires manual conversion: does not exist in peer-type
    	// WARNING: in.CurrentValue requires manual conversion: does not exist in peer-type
    	// WARNING: in.Selector requires manual conversion: does not exist in peer-type
    	// WARNING: in.AverageValue requires manual conversion: does not exist in peer-type
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 43.7K bytes
    - Viewed (0)
  2. pkg/apis/autoscaling/v2beta1/zz_generated.conversion.go

    	// WARNING: in.Target requires manual conversion: does not exist in peer-type
    	// WARNING: in.MetricName requires manual conversion: does not exist in peer-type
    	// WARNING: in.CurrentValue requires manual conversion: does not exist in peer-type
    	// WARNING: in.Selector requires manual conversion: does not exist in peer-type
    	// WARNING: in.AverageValue requires manual conversion: does not exist in peer-type
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 42.5K bytes
    - Viewed (0)
  3. test/abi/idata.go

    func newFloat() *big.Float { return new(big.Float).SetPrec(prec) }
    
    //go:noinline
    //go:registerparams
    func itor(x intVal) ratVal       { return ratVal{nil} }
    
    //go:noinline
    //go:registerparams
    func itof(x intVal) floatVal     { return floatVal{nil} }
    func rtof(x ratVal) floatVal     { return floatVal{newFloat().SetRat(x.val)} }
    
    type Value interface {
    	String() string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 20:11:08 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux_386.go

    		rl.Cur = rlimInf32
    	} else if rlim.Cur < uint64(rlimInf32) {
    		rl.Cur = uint32(rlim.Cur)
    	} else {
    		return EINVAL
    	}
    	if rlim.Max == rlimInf64 {
    		rl.Max = rlimInf32
    	} else if rlim.Max < uint64(rlimInf32) {
    		rl.Max = uint32(rlim.Max)
    	} else {
    		return EINVAL
    	}
    
    	return setrlimit1(resource, &rl)
    }
    
    //go:nosplit
    func rawSetrlimit(resource int, rlim *Rlimit) Errno {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/syscall/syscall_linux.go

    }
    
    func Utimes(path string, tv []Timeval) (err 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) (err error) {
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	return utimensat(_AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check_test.go

    func testFiles(t *testing.T, filenames []string, srcs [][]byte, colDelta uint, manual bool, opts ...func(*Config)) {
    	enableAlias := true
    	opts = append(opts, func(conf *Config) { conf.EnableAlias = enableAlias })
    	testFilesImpl(t, filenames, srcs, colDelta, manual, opts...)
    	if !manual {
    		enableAlias = false
    		testFilesImpl(t, filenames, srcs, colDelta, manual, opts...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/net/fd_unix.go

    			return nil, mapErr(ctx.Err())
    		default:
    		}
    		if err := fd.pfd.Init(fd.net, true); err != nil {
    			return nil, err
    		}
    		runtime.KeepAlive(fd)
    		return nil, nil
    	case syscall.EINVAL:
    		// On Solaris and illumos we can see EINVAL if the socket has
    		// already been accepted and closed by the server.  Treat this
    		// as a successful connection--writes to the socket will see
    		// EOF.  For details and a test case in C see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. src/net/file_plan9.go

    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"errors"
    	"io"
    	"os"
    	"syscall"
    )
    
    func (fd *netFD) status(ln int) (string, error) {
    	if !fd.ok() {
    		return "", syscall.EINVAL
    	}
    
    	status, err := os.Open(fd.dir + "/status")
    	if err != nil {
    		return "", err
    	}
    	defer status.Close()
    	buf := make([]byte, ln)
    	n, err := io.ReadFull(status, buf[:])
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/internal/poll/splice_linux.go

    		max := maxSpliceSize
    		if int64(max) > remain {
    			max = int(remain)
    		}
    		inPipe, err = spliceDrain(p.wfd, src, max)
    		// The operation is considered handled if splice returns no
    		// error, or an error other than EINVAL. An EINVAL means the
    		// kernel does not support splice for the socket type of src.
    		// The failed syscall does not consume any data so it is safe
    		// to fall back to a generic copy.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/os/file_open_wasip1.go

    //go:build wasip1
    
    package os
    
    import (
    	"internal/poll"
    	"syscall"
    )
    
    func open(filePath string, flag int, perm uint32) (int, poll.SysFile, error) {
    	if filePath == "" {
    		return -1, poll.SysFile{}, syscall.EINVAL
    	}
    	absPath := filePath
    	// os.(*File).Chdir is emulated by setting the working directory to the
    	// absolute path that this file was opened at, which is why we have to
    	// resolve and capture it here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 818 bytes
    - Viewed (0)
Back to top