Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for freezes (0.13 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    	pos src.XPos // source position of use of this register
    }
    
    // freeReg frees up register r. Any current user of r is kicked out.
    func (s *regAllocState) freeReg(r register) {
    	v := s.regs[r].v
    	if v == nil {
    		s.f.Fatalf("tried to free an already free register %d\n", r)
    	}
    
    	// Mark r as unused.
    	if s.f.pass.debug > regDebug {
    		fmt.Printf("freeReg %s (dump %s/%s)\n", &s.registers[r], v, s.regs[r].c)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    	// active.
    	future [3]memRecordCycle
    }
    
    // memRecordCycle
    type memRecordCycle struct {
    	allocs, frees           uintptr
    	alloc_bytes, free_bytes uintptr
    }
    
    // add accumulates b into a. It does not zero b.
    func (a *memRecordCycle) add(b *memRecordCycle) {
    	a.allocs += b.allocs
    	a.frees += b.frees
    	a.alloc_bytes += b.alloc_bytes
    	a.free_bytes += b.free_bytes
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // sweeps small-object spans for the same object size until it frees at least
    // one object. When a goroutine needs to allocate large-object span from heap,
    // it sweeps spans until it frees at least that many pages into heap. There is
    // one case where this may not suffice: if a goroutine sweeps and frees two
    // nonadjacent one-page spans to the heap, it will allocate a new two-page
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            public ResolutionHost getHost() {
                return new DefaultResolutionHost();
            }
    
            @Override
            public ImmutableAttributes getAttributes() {
                configurationAttributes.freeze();
                return configurationAttributes.asImmutable();
            }
    
            @Override
            public ResolutionStrategy.SortOrder getDefaultSortOrder() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	28: "virtual Timer Expired",
    	29: "profiling Timer Expired",
    	30: "cpu Limit Exceeded",
    	31: "file Size Limit Exceeded",
    	32: "no runnable lwp",
    	33: "inter-lwp signal",
    	34: "checkpoint Freeze",
    	35: "checkpoint Thaw",
    	36: "thread Cancellation",
    	37: "resource Lost",
    	38: "resource Control Exceeded",
    	39: "reserved for JVM 1",
    	40: "reserved for JVM 2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    // TF_NewWhile() call.
    TF_CAPI_EXPORT extern void TF_FinishWhile(const TF_WhileParams* params,
                                              TF_Status* status,
                                              TF_Output* outputs);
    
    // Frees `params`s resources without building a while loop. `params` is no
    // longer valid after this returns. Either this or TF_FinishWhile() must be
    // called after a successful TF_NewWhile() call.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{30, "SIGXCPU", "cpu Limit Exceeded"},
    	{31, "SIGXFSZ", "file Size Limit Exceeded"},
    	{32, "SIGWAITING", "no runnable lwp"},
    	{33, "SIGLWP", "inter-lwp signal"},
    	{34, "SIGFREEZE", "checkpoint Freeze"},
    	{35, "SIGTHAW", "checkpoint Thaw"},
    	{36, "SIGCANCEL", "thread Cancellation"},
    	{37, "SIGLOST", "resource Lost"},
    	{38, "SIGXRES", "resource Control Exceeded"},
    	{39, "SIGJVM1", "reserved for JVM 1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	// TODO(austin): Half of the time spent freeing spans is in
    	// locking/unlocking the heap (even with low contention). We
    	// could make the slow path here several times faster by
    	// batching heap frees.
    
    	// Bail early if there's no more reclaim work.
    	if h.reclaimIndex.Load() >= 1<<63 {
    		return
    	}
    
    	// Disable preemption so the GC can't start while we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsBoostDocumentRuleCA.java

    import org.opensearch.search.aggregations.metrics.TopHitsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.ValueCountAggregationBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class BsBoostDocumentRuleCA extends EsAbstractConditionAggregation {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 50.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsDuplicateHostCA.java

    import org.opensearch.search.aggregations.metrics.TopHitsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.ValueCountAggregationBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class BsDuplicateHostCA extends EsAbstractConditionAggregation {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top