Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 173 for preamp (0.13 sec)

  1. pkg/scheduler/apis/config/types.go

    	// Verb for the filter call, empty if not supported. This verb is appended to the URLPrefix when issuing the filter call to extender.
    	FilterVerb string
    	// Verb for the preempt call, empty if not supported. This verb is appended to the URLPrefix when issuing the preempt call to extender.
    	PreemptVerb string
    	// Verb for the prioritize call, empty if not supported. This verb is appended to the URLPrefix when issuing the prioritize call to extender.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/os/file_plan9.go

    	}
    	return n, e
    }
    
    // pread reads len(b) bytes from the File starting at byte offset off.
    // It returns the number of bytes read and the error, if any.
    // EOF is signaled by a zero count with err set to nil.
    func (f *File) pread(b []byte, off int64) (n int, err error) {
    	if err := f.readLock(); err != nil {
    		return 0, err
    	}
    	defer f.readUnlock()
    	n, e := fixCount(syscall.Pread(f.fd, b, off))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/runtime/lock_sema.go

    				semawakeup(mp)
    				break
    			}
    		}
    	}
    	gp.m.mLockProfile.recordUnlock(l)
    	gp.m.locks--
    	if gp.m.locks < 0 {
    		throw("runtimeĀ·unlock: lock count")
    	}
    	if gp.m.locks == 0 && gp.preempt { // restore the preemption request in case we've cleared it in newstack
    		gp.stackguard0 = stackPreempt
    	}
    }
    
    // One-time notifications.
    func noteclear(n *note) {
    	n.key = 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    				// as we are no longer performing P-local mark
    				// work.
    				//
    				// However, since we cooperatively stop work
    				// when gp.preempt is set, if we releasem in
    				// the loop then the following call to gopark
    				// would immediately preempt the G. This is
    				// also safe, but inefficient: the G must
    				// schedule again only to enter gopark and park
    				// again. Thus, we defer the release until
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    		// isAsyncSafePoint must exclude this case.
    		f := findfunc(gp.sched.pc)
    		if !f.valid() {
    			throw("preempt at unknown pc")
    		}
    		if f.flag&abi.FuncFlagSPWrite != 0 {
    			println("runtime: unexpected SPWRITE function", funcname(f), "in async preempt")
    			throw("preempt SPWRITE")
    		}
    	}
    
    	// Transition from _Grunning to _Gscan|_Gpreempted. We can't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/runtime/proc_test.go

    					return
    				}
    			}
    		}()
    	}
    	<-done
    	<-done
    }
    
    // The function is used to test preemption at split stack checks.
    // Declaring a var avoids inlining at the call site.
    var preempt = func() int {
    	var a [128]int
    	sum := 0
    	for _, v := range a {
    		sum += v
    	}
    	return sum
    }
    
    func TestPreemption(t *testing.T) {
    	if runtime.GOARCH == "wasm" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/FileBackedOutputStream.java

     *
     * <p>When this stream creates a temporary file, it restricts the file's permissions to the current
     * user or, in the case of Android, the current app. If that is not possible (as is the case under
     * the very old Android Ice Cream Sandwich release), then this stream throws an exception instead of
     * creating a file that would be more accessible. (This behavior is new in Guava 32.0.0. Previous
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. src/runtime/debug_test.go

    	// injection test code fire, because it runs in a signal handler
    	// and may not have a P.
    	//
    	// We use 8 Ps so there's room for the debug call worker,
    	// something that's trying to preempt the call worker, and the
    	// goroutine that's trying to stop the call worker.
    	ogomaxprocs := runtime.GOMAXPROCS(8)
    	ogcpercent := debug.SetGCPercent(-1)
    	runtime.GC()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/hash/adler32/adler32_test.go

    	{0x7cc6102b, "If the enemy is within range, then so are you.", "adl\x01_\xe0\b\x1e"},
    	{0x700318e7, "It's well we cannot hear the screams/That we create in others' dreams.", "adl\x01Ū˜\f\x87"},
    	{0x1e601747, "You remind me of a TV show, but that's all right: I watch it anyway.", "adl\x01\xcc}\v\x83"},
    	{0xb55b0b09, "C is as portable as Stonehedge!!", "adl\x01,^\x05\xad"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go

    func Lstat(path string, stat *Stat_t) (err error) {
    	return Fstatat(AT_FDCWD, path, stat, AT_SYMLINK_NOFOLLOW)
    }
    
    //sys	MemfdSecret(flags int) (fd int, err error)
    //sys	Pause() (err error)
    //sys	pread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64
    //sys	pwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64
    //sys	Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top