Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 409 for fries (0.04 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/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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                module('start') group('start') alignsTo('1.0')
                module('foo') alignsTo('1.5') byVirtualPlatform()
                module('bar') tries('1.0') alignsTo('1.5') byVirtualPlatform()
                module('fooBar') tries('1.0') alignsTo('1.5') byVirtualPlatform()
                module('baz') tries('1.0') alignsTo('1.5') byVirtualPlatform()
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_libinit.c

    	int tries;
    	int err;
    	struct timespec ts;
    
    	for (tries = 0; tries < 20; tries++) {
    		err = pthread_create(thread, attr, pfn, arg);
    		if (err == 0) {
    			pthread_detach(*thread);
    			return 0;
    		}
    		if (err != EAGAIN) {
    			return err;
    		}
    		ts.tv_sec = 0;
    		ts.tv_nsec = (tries + 1) * 1000 * 1000; // Milliseconds.
    		nanosleep(&ts, nil);
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/TestMainActionTest.groovy

        private final TestMainAction action = new TestMainAction(detector, processor, resultProcessor, workerLeaseService, timeProvider, "rootTestSuiteId456", "Test Run")
    
        def 'fires start and end events around detector execution'() {
            when:
            action.run()
    
            then:
            1 * timeProvider.getCurrentTime() >> 100L
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. test/chanlinear.go

    // take linear time.
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    	"time"
    )
    
    // checkLinear asserts that the running time of f(n) is in O(n).
    // tries is the initial number of iterations.
    func checkLinear(typ string, tries int, f func(n int)) {
    	// Depending on the machine and OS, this test might be too fast
    	// to measure with accurate enough granularity. On failure,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top