Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 143 for freezes (0.12 sec)

  1. src/runtime/mpagealloc_test.go

    	}
    	tests := map[string]struct {
    		before map[ChunkIdx][]BitRange
    		after  map[ChunkIdx][]BitRange
    		npages uintptr
    		frees  []uintptr
    	}{
    		"Free1": {
    			npages: 1,
    			before: map[ChunkIdx][]BitRange{
    				BaseChunkIdx: {{0, PallocChunkPages}},
    			},
    			frees: []uintptr{
    				PageBase(BaseChunkIdx, 0),
    				PageBase(BaseChunkIdx, 1),
    				PageBase(BaseChunkIdx, 2),
    				PageBase(BaseChunkIdx, 3),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
  2. src/runtime/mpallocbits_test.go

    			npages:   2,
    			frees:    []uint{0, 2, 4, 6, 8, 10},
    			afterInv: []BitRange{{0, 12}},
    		},
    		"NoneFree5": {
    			npages:   5,
    			frees:    []uint{0, 5, 10, 15, 20},
    			afterInv: []BitRange{{0, 25}},
    		},
    		"NoneFree64": {
    			npages:   64,
    			frees:    []uint{0, 64, 128},
    			afterInv: []BitRange{{0, 192}},
    		},
    		"NoneFree65": {
    			npages:   65,
    			frees:    []uint{0, 65, 130},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

            .and(modifier(PUBLIC))
            .and(not(kotlin_internal_methods))
            .as("public API methods");
    
        static ArchRule freeze(ArchRule rule) {
            return new FreezeInstructionsPrintingArchRule(FreezingArchRule.freeze(rule));
        }
    
        static DescribedPredicate<JavaClass> gradlePublicApi() {
            return new GradlePublicApi();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. cmd/perf-tests.go

    	defer uploadsCancel()
    
    	objNamePrefix := pathJoin(speedTest, mustGetUUID())
    
    	userMetadata := make(map[string]string)
    	userMetadata[globalObjectPerfUserMetadata] = "true" // Bypass S3 API freeze
    	popts := minio.PutObjectOptions{
    		UserMetadata:         userMetadata,
    		DisableContentSha256: !opts.enableSha256,
    		DisableMultipart:     !opts.enableMultipart,
    	}
    
    	clnt := globalMinioClient
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. 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)
  6. src/runtime/mstats.go

    	Lookups uint64
    
    	// Mallocs is the cumulative count of heap objects allocated.
    	// The number of live objects is Mallocs - Frees.
    	Mallocs uint64
    
    	// Frees is the cumulative count of heap objects freed.
    	Frees uint64
    
    	// Heap memory statistics.
    	//
    	// Interpreting the heap statistics requires some knowledge of
    	// how Go organizes memory. Go divides the virtual address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

     */
    package org.codelibs.fess.mylasta.direction;
    
    import org.lastaflute.core.direction.ObjectiveConfig;
    import org.lastaflute.core.direction.exception.ConfigPropertyNotFoundException;
    
    /**
     * @author FreeGen
     */
    public interface FessEnv {
    
        /** The key of the configuration. e.g. warm */
        String lasta_di_SMART_DEPLOY_MODE = "lasta_di.smart.deploy.mode";
    
        /** The key of the configuration. e.g. true */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java

    import org.dbflute.util.DfCollectionUtil;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.index.IndexRequestBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class EsAbstractEntity implements Entity, Serializable, Cloneable {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

    import org.dbflute.util.DfCollectionUtil;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.index.IndexRequestBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class EsAbstractEntity implements Entity, Serializable, Cloneable {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/runtime/mpallocbits.go

    func (b *pallocBits) allocAll() {
    	(*pageBits)(b).setAll()
    }
    
    // free1 frees a single page in the pallocBits at i.
    func (b *pallocBits) free1(i uint) {
    	(*pageBits)(b).clear(i)
    }
    
    // free frees the range [i, i+n) of pages in the pallocBits.
    func (b *pallocBits) free(i, n uint) {
    	(*pageBits)(b).clearRange(i, n)
    }
    
    // freeAll frees all the bits of b.
    func (b *pallocBits) freeAll() {
    	(*pageBits)(b).clearAll()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top