Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for north (0.04 sec)

  1. src/runtime/malloc.go

    	// be very high if they were to be backed by huge pages (e.g. a few MiB makes
    	// a huge difference for an 8 MiB heap, but barely any difference for a 1 GiB
    	// heap). The benefit of huge pages is also not worth it for small heaps,
    	// because only a very, very small part of the metadata is used for small heaps.
    	//
    	// N.B. If the heap goal exceeds the threshold then shrinks to a very small size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    			AuthenticationPolicies{}, NetworkManager{}, sidecarIndex{}, Telemetries{}, ProxyConfigs{}, ConsolidatedDestRule{},
    			ClusterLocalHosts{}),
    		// These are not feasible/worth comparing
    		cmpopts.IgnoreTypes(sync.RWMutex{}, localServiceDiscovery{}, FakeStore{}, atomic.Bool{}, sync.Mutex{}),
    		cmpopts.IgnoreUnexported(IstioEndpoint{}),
    		cmpopts.IgnoreInterfaces(struct{ mesh.Holder }{}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	-vet list
    	    Configure the invocation of "go vet" during "go test"
    	    to use the comma-separated list of vet checks.
    	    If list is empty, "go test" runs "go vet" with a curated list of
    	    checks believed to be always worth addressing.
    	    If list is "off", "go test" does not run "go vet" at all.
    
    The following flags are also recognized by 'go test' and can be used to
    profile the tests during execution:
    
    	-benchmem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Gradle allows you to create as many archive tasks as you want, but it's worth considering that many convention-based plugins provide their own.
    For example, the Java plugin adds a `jar` task for packaging a project's compiled classes and resources in a JAR.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    		pp.mspancache.len++
    		return
    	}
    	// Failing that (or if we don't have a p), just free it to
    	// the heap.
    	h.spanalloc.free(unsafe.Pointer(s))
    }
    
    // allocSpan allocates an mspan which owns npages worth of memory.
    //
    // If typ.manual() == false, allocSpan allocates a heap span of class spanclass
    // and updates heap accounting. If manual == true, allocSpan allocates a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top