Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 530 for fries (0.09 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"french_southern_territories":          "\U0001f1f9\U0001f1eb",
    	"fried_egg":                            "\U0001f373",
    	"fried_shrimp":                         "\U0001f364",
    	"fries":                                "\U0001f35f",
    	"frog":                                 "\U0001f438",
    	"frowning":                             "\U0001f626",
    	"frowning_face":                        "\u2639\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. src/runtime/metrics_test.go

    			// Because the next two metrics tests are checking against Mallocs and Frees,
    			// we can't check them directly for the same reason: we need to account for tiny
    			// allocations included in Mallocs and Frees.
    		case "/gc/heap/allocs:objects":
    			mallocs = samples[i].Value.Uint64()
    		case "/gc/heap/frees:objects":
    			frees = samples[i].Value.Uint64()
    		case "/gc/heap/live:bytes":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. src/time/tick_test.go

    			runtime.GC()
    			runtime.GC()
    			runtime.ReadMemStats(&stats)
    			before := int64(stats.Mallocs - stats.Frees)
    
    			for j := 0; j < N; j++ {
    				f()
    			}
    
    			runtime.GC()
    			runtime.GC()
    			runtime.GC()
    			runtime.ReadMemStats(&stats)
    			after := int64(stats.Mallocs - stats.Frees)
    
    			// Allow some slack, but inuse >= N means at least 1 allocation per iteration.
    			inuse := after - before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/sigprocmask.c

    	return NULL;
    }
    
    int RunSigThread() {
    	int tries;
    	pthread_t thread;
    	int r;
    	struct timespec ts;
    
    	for (tries = 0; tries < 20; tries++) {
    		r = pthread_create(&thread, NULL, &sigthreadfunc, NULL);
    		if (r == 0) {
    			return pthread_join(thread, NULL);
    		}
    		if (r != EAGAIN) {
    			return r;
    		}
    		ts.tv_sec = 0;
    		ts.tv_nsec = (tries + 1) * 1000 * 1000; // Milliseconds.
    		nanosleep(&ts, NULL);
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/cmd/dist/util_gc.go

    //go:build gc
    
    package main
    
    // useVFPv1 tries to execute one VFPv1 instruction on ARM.
    // It will crash the current process if VFPv1 is missing.
    func useVFPv1()
    
    // useVFPv3 tries to execute one VFPv3 instruction on ARM.
    // It will crash the current process if VFPv3 is missing.
    func useVFPv3()
    
    // useARMv6K tries to run ARMv6K instructions on ARM.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 609 bytes
    - Viewed (0)
  6. src/runtime/testdata/testprognet/signalexec.go

    	register("Nop", Nop)
    }
    
    func SignalDuringExec() {
    	pgrp := syscall.Getpgrp()
    
    	const tries = 10
    
    	var wg sync.WaitGroup
    	c := make(chan os.Signal, tries)
    	signal.Notify(c, syscall.SIGWINCH)
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		for range c {
    		}
    	}()
    
    	for i := 0; i < tries; i++ {
    		time.Sleep(time.Microsecond)
    		wg.Add(2)
    		go func() {
    			defer wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package wait
    
    import (
    	"context"
    	"time"
    )
    
    // PollUntilContextCancel tries a condition func until it returns true, an error, or the context
    // is cancelled or hits a deadline. condition will be invoked after the first interval if the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  8. cluster/addons/addon-manager/kube-addons.sh

    # $1 filename of addon to start.
    # $2 count of tries to start the addon.
    # $3 delay in seconds between two consecutive tries
    # $4 namespace
    function start_addon() {
      local -r addon_filename=$1;
      local -r tries=$2;
      local -r delay=$3;
      local -r namespace=$4
    
      create_resource_from_string "$(cat "${addon_filename}")" "${tries}" "${delay}" "${addon_filename}" "${namespace}"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. src/runtime/retry.go

    // If all retries return EAGAIN, then retryOnEAGAIN will return EAGAIN.
    func retryOnEAGAIN(fn func() int32) int32 {
    	for tries := 0; tries < 20; tries++ {
    		errno := fn()
    		if errno != _EAGAIN {
    			return errno
    		}
    		usleep_no_g(uint32(tries+1) * 1000) // milliseconds
    	}
    	return _EAGAIN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:44:45 UTC 2022
    - 760 bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/initsystem/initsystem_unix.go

    )
    
    // OpenRCInitSystem defines openrc
    type OpenRCInitSystem struct{}
    
    // ServiceStart tries to start a specific service
    func (openrc OpenRCInitSystem) ServiceStart(service string) error {
    	args := []string{service, "start"}
    	return exec.Command("rc-service", args...).Run()
    }
    
    // ServiceStop tries to stop a specific service
    func (openrc OpenRCInitSystem) ServiceStop(service string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 03:15:07 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top