Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for freezes (0.14 sec)

  1. 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)
  2. 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)
  3. src/runtime/mfinal.go

    // need to use appropriate synchronization, such as mutexes or atomic updates,
    // to avoid read-write races.
    func SetFinalizer(obj any, finalizer any) {
    	if debug.sbrk != 0 {
    		// debug.sbrk never frees memory, so no finalizers run
    		// (and we don't have the data structures to record them).
    		return
    	}
    	e := efaceOf(&obj)
    	etyp := e._type
    	if etyp == nil {
    		throw("runtime.SetFinalizer: first argument is nil")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func.go

    			}
    			if aux != 0 && f.unCacheLine(v, aux) {
    				return
    			}
    		}
    		f.Fatalf("unCached value %s not found in cache, auxInt=0x%x, adjusted aux=0x%x", v.LongString(), v.AuxInt, aux)
    	}
    }
    
    // freeValue frees a value. It must no longer be referenced or have any args.
    func (f *Func) freeValue(v *Value) {
    	if v.Block == nil {
    		f.Fatalf("trying to free an already freed value")
    	}
    	if v.Uses != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    				be.uevar.Set(pos)
    			}
    		}
    	}
    }
    
    // Solve the liveness dataflow equations.
    func (lv *liveness) solve() {
    	// These temporary bitvectors exist to avoid successive allocations and
    	// frees within the loop.
    	nvars := int32(len(lv.vars))
    	newlivein := bitvec.New(nvars)
    	newliveout := bitvec.New(nvars)
    
    	// Walk blocks in postorder ordering. This improves convergence.
    	po := lv.f.Postorder()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. RELEASE.md

    Agarwalla, Patrice Vignola, peterjc123, Philip Turner, Rajeshwar Reddy T, Robert Kalmar, Rodrigo Formigone, Rohit Santhanam, rui, Sachin Muradi, Saduf2019, sandip, Scott Leishman, Serge Panev, Shi,Guangyong, Srinivasan Narayanamoorthy, stanley, Steven I Reeves, stevenireeves, sushreebarsa, Tamas Bela Feher, Tao He, Thomas Schmeyer, Tiago Almeida, Trevor Morris, Uday Bondhugula, Uwe L. Korn, Varghese, Jojimon, Vishnuvardhan Janapati, William Muir, William Raveane, xutianming, Yasuhiro Matsumoto, Yimei Sun,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.tasks.util.internal.PatternSpecFactory> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PatternSpecFactory.java:0)
    Class <org.gradle.architecture.library.freeze.LineNumberIgnoringViolationStore> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (LineNumberIgnoringViolationStore.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top