Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for touched (0.23 sec)

  1. src/runtime/traceback.go

    		// Note that the calls are simple BL without pushing the return
    		// address, so we use LR directly.
    		//
    		// The kernel helpers are frameless leaf functions, so SP and
    		// LR are not touched.
    		frame.pc = frame.lr
    		frame.lr = 0
    	}
    
    	f := findfunc(frame.pc)
    	if !f.valid() {
    		if flags&unwindSilentErrors == 0 {
    			print("runtime: g ", gp.goid, " gp=", gp, ": unknown pc ", hex(frame.pc), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	//
    	// This is currently 64MB on 64-bit non-Windows and 4MB on
    	// 32-bit and on Windows. We use smaller arenas on Windows
    	// because all committed memory is charged to the process,
    	// even if it's not touched. Hence, for processes with small
    	// heaps, the mapped arena space needs to be commensurate.
    	// This is particularly important with the race detector,
    	// since it significantly amplifies the cost of committed
    	// memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    func legacyWait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
    	// TODO(mundaym): z/OS doesn't have wait4. I don't think getrusage does what we want.
    	// At the moment rusage will not be touched.
    	var status _C_int
    	wpid, err = waitpid(pid, &status, options)
    	if wstatus != nil {
    		*wstatus = WaitStatus(status)
    	}
    	return
    }
    
    //sysnb	gettimeofday(tv *timeval_zos) (err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// it's fine to pick Y, because the memory limit is still satisfied).
    	//
    	// It's fine to do this after allocating because we expect any scavenged
    	// pages not to get touched until we return. Simultaneously, it's important
    	// to do this before calling sysUsed because that may commit address space.
    	bytesToScavenge := uintptr(0)
    	forceScavenge := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    		tries = 1
    	}
    	for try := 0; try < tries; try++ {
    		var prof bytes.Buffer
    		if err := StartCPUProfile(&prof); err != nil {
    			t.Fatal(err)
    		}
    		for i := 0; i < count; i++ {
    			runtime.Gosched()
    		}
    		StopCPUProfile()
    
    		// Read profile to look for entries for gogo with an attempt at a traceback.
    		// "runtime.gogo" is OK, because that's the part of the context switch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    	})
    
    	// Release the world sema before Gosched() in STW mode
    	// because we will need to reacquire it later but before
    	// this goroutine becomes runnable again, and we could
    	// self-deadlock otherwise.
    	semrelease(&worldsema)
    	releasem(mp)
    
    	// Make sure we block instead of returning to user code
    	// in STW mode.
    	if mode != gcBackgroundMode {
    		Gosched()
    	}
    
    	semrelease(&work.startSema)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. tensorflow/BUILD

                  $(location @local_config_def_file_filter//:def_file_filter) \\
                  --input $(location :tensorflow_def_file) \\
                  --output $@
              """,
            "//conditions:default": "touch $@",  # Just a placeholder for Unix platforms
        }),
        tools = ["@local_config_def_file_filter//:def_file_filter"],
        visibility = ["//visibility:public"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

       *   <li>Any {@link InterruptedException} is wrapped in an {@code X} (after restoring the
       *       interrupt).
       *   <li>Any {@link CancellationException} is propagated untouched, as is any other {@link
       *       RuntimeException} (though {@code get} implementations are discouraged from throwing such
       *       exceptions).
       * </ul>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Futures.java

       *   <li>Any {@link InterruptedException} is wrapped in an {@code X} (after restoring the
       *       interrupt).
       *   <li>Any {@link CancellationException} is propagated untouched, as is any other {@link
       *       RuntimeException} (though {@code get} implementations are discouraged from throwing such
       *       exceptions).
       * </ul>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  10. src/sync/atomic/atomic_test.go

    				StoreInt32(&X[me], i)
    				my := LoadInt32(&X[he])
    				StoreInt32(&ack[me][i%3], my)
    				for w := 1; LoadInt32(&ack[he][i%3]) == -1; w++ {
    					if w%1000 == 0 {
    						runtime.Gosched()
    					}
    				}
    				his := LoadInt32(&ack[he][i%3])
    				if (my != i && my != i-1) || (his != i && his != i-1) {
    					t.Errorf("invalid values: %d/%d (%d)", my, his, i)
    					break
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
Back to top