Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 378 for touched (0.34 sec)

  1. 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)
  2. src/encoding/json/testdata/code.json.gz

    s":[],"cl_weight":0.1,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444},{"name":"transport.go","kids":[],"cl_weight":0.1,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444}],"cl_weight":0.9999999999999999,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444},{"name":"draw","kids":[{"name":"Makefile","kids":[],"cl_weight":1,"touches":1,"min_t":1258062920,"max_t":1258062920,"mean_t":1258062920}],"cl_weight":1,"touches":1,"min_t":1258062920,"...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  3. 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)
  4. cluster/gce/gci/configure-helper.sh

        write-pki-data "${CLOUD_PVL_ADMISSION_CERT}" "${CLOUD_PVL_ADMISSION_CERT_PATH}"
      fi
    }
    
    # After the first boot and on upgrade, these files exist on the master-pd
    # and should never be touched again (except perhaps an additional service
    # account, see NB below.) One exception is if METADATA_CLOBBERS_CONFIG is
    # enabled.
    function create-master-auth {
      echo "Creating master auth files"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal_test.go

    		},
    		{
    			name:          "one outdated entry to be kept untouched without behavior",
    			replicaChange: 5,
    			prevScaleEvents: []timestampedScaleEvent{
    				{7, time.Now().Add(-time.Second * time.Duration(61)), false}, // outdated event, should be replaced
    			},
    			newScaleEvents: []timestampedScaleEvent{
    				{7, time.Now(), false}, // no behavior -> we don't touch stored events
    			},
    			expectedReplicasChange: 0,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  6. pkg/util/tolerations/tolerations_test.go

    	}{{
    		"all",
    		[]string{"all-nosched", "all-noexec", "foo", "foo-bar", "foo-nosched", "foo-bar-nosched", "foo-baz-nosched", "faz-nosched", "faz-baz-nosched", "foo-prefnosched", "foo-noexec", "foo-bar-noexec", "foo-noexec-10", "foo-noexec-0", "foo-bar-noexec-10"},
    	}, {
    		"all-nosched",
    		[]string{"foo-nosched", "foo-bar-nosched", "foo-baz-nosched", "faz-nosched", "faz-baz-nosched"},
    	}, {
    		"all-noexec",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 26 22:25:49 UTC 2019
    - 11.4K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprog/map.go

    			m[5] = 0
    			runtime.Gosched()
    		}
    		c <- struct{}{}
    	}()
    	go func() {
    		for i := 0; i < 10000; i++ {
    			m[6] = 0
    			runtime.Gosched()
    		}
    		c <- struct{}{}
    	}()
    	<-c
    	<-c
    }
    
    func concurrentMapReadWrite() {
    	m := map[int]int{}
    	c := make(chan struct{})
    	go func() {
    		for i := 0; i < 10000; i++ {
    			m[5] = 0
    			runtime.Gosched()
    		}
    		c <- struct{}{}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 16 21:52:44 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/cgo_thread_lock.go

    /*
    #include <unistd.h>
    #include <stdbool.h>
    #include <sys/syscall.h>
    void Gosched(void);
    static bool Ctid(void) {
    	long tid1 = syscall(SYS_gettid);
    	Gosched();
    	return tid1 == syscall(SYS_gettid);
    }
    */
    import "C"
    
    import (
    	"runtime"
    	"testing"
    	"time"
    )
    
    //export Gosched
    func Gosched() {
    	runtime.Gosched()
    }
    
    func init() {
    	testThreadLockFunc = testThreadLock
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 16:55:07 UTC 2023
    - 939 bytes
    - Viewed (0)
  9. src/runtime/race/testdata/atomic_test.go

    		x = 2
    		atomic.AddInt32(&s, 1)
    	}()
    	for atomic.LoadInt32(&s) != 1 {
    		runtime.Gosched()
    	}
    	x = 1
    }
    
    func TestNoRaceAtomicLoadStoreInt32(t *testing.T) {
    	var x int64
    	_ = x
    	var s int32
    	go func() {
    		x = 2
    		atomic.StoreInt32(&s, 1)
    	}()
    	for atomic.LoadInt32(&s) != 1 {
    		runtime.Gosched()
    	}
    	x = 1
    }
    
    func TestNoRaceAtomicStoreCASInt32(t *testing.T) {
    	var x int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 16 17:26:46 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  10. test/gcgort.go

    				runtime.Gosched()
    			}
    			for i := 0; i < mods; i++ {
    				for k, _ := range a {
    					a[k]++
    				}
    				runtime.Gosched()
    			}
    		},
    		mapPointerKeyT: func() {
    			a := make(map[*uint16]uint16)
    			for i := 0; i < length; i++ {
    				a[new(uint16)] = uint16(i)
    				runtime.Gosched()
    			}
    			for i := 0; i < mods; i++ {
    				for k, _ := range a {
    					a[k]++
    					runtime.Gosched()
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 21:15:48 UTC 2018
    - 34.5K bytes
    - Viewed (0)
Back to top