Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,072 for incremented (0.18 sec)

  1. src/cmd/internal/obj/wasm/wasmobj.go

    	}
    
    	// Introduce resume points for CALL instructions
    	// and collect other explicit resume points.
    	numResumePoints := 0
    	explicitBlockDepth := 0
    	pc := int64(0) // pc is only incremented when necessary, this avoids bloat of the BrTable instruction
    	var tableIdxs []uint64
    	tablePC := int64(0)
    	base := ctxt.PosTable.Pos(s.Func().Text.Pos).Base()
    	for p := s.Func().Text; p != nil; p = p.Link {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/work/Incremental.java

     * <p>
     *     Inputs annotated with {@link Incremental} can be queried for changes via {@link InputChanges#getFileChanges(org.gradle.api.file.FileCollection)} or {@link org.gradle.work.InputChanges#getFileChanges(org.gradle.api.provider.Provider)}.
     * </p>
     *
     * @since 5.4
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    @Documented
    public @interface Incremental {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 06 13:15:59 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais.go

    	// then the high bit of the inversion will be set,
    	// making it clearly not a valid length (it would be a negative one).
    	//
    	// cx holds the pre-inverted encoding (the packed incremented bytes).
    	cx := uint32(0) // byte-only
    
    	// This stanza (until the blank line) is the "LMS-substring iterator",
    	// described in placeLMS_8_32 above, with one line added to maintain cx.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. pkg/controller/history/controller_history_test.go

    			if created.Name != expectedName {
    				t.Errorf("%s: on name collision wanted new name %s got %s", test.name, expectedName, created.Name)
    			}
    
    			// Second name collision should have incremented collisionCount to 2
    			_, err = history.CreateControllerRevision(test.parent, test.revision, &collisionCount)
    			if err != nil {
    				t.Errorf("%s: %s", test.name, err)
    			}
    			if collisionCount != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  5. src/runtime/trace.go

    	// zero because the world is stopped and there are no available Ps for syscall-exited
    	// goroutines to run on.
    	//
    	// Because we set gen before checking this, and because exitingSyscall is always incremented
    	// *before* traceAcquire (which checks gen), we can be certain that when exitingSyscall is zero
    	// that any goroutine that goes to exit a syscall from then on *must* observe the new gen as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/processor/src/main/resources/META-INF/gradle/incremental.annotation.processors

    # tag::registering-incremental-annotation-processors[]
    org.gradle.EntityProcessor,isolating
    org.gradle.ServiceRegistryProcessor,dynamic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 191 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/order.go

    	counter.Linksym().Type = objabi.SLIBFUZZER_8BIT_COUNTER
    
    	// We guarantee that the counter never becomes zero again once it has been
    	// incremented once. This implementation follows the NeverZero optimization
    	// presented by the paper:
    	// "AFL++: Combining Incremental Steps of Fuzzing Research"
    	// The NeverZero policy avoids the overflow to 0 by setting the counter to one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	VMOVDQU BB0, (1*32)(oup)
    	LEAQ    (2*32)(inp), inp
    	LEAQ    (2*32)(oup), oup
    	SUBQ    $64, inl
    
    openAVX2MainLoop:
    	CMPQ inl, $512
    	JB   openAVX2MainLoopDone
    
    	// Load state, increment counter blocks, store the incremented counters
    	VMOVDQU ·chacha20Constants<>(SB), AA0; VMOVDQA AA0, AA1; VMOVDQA AA0, AA2; VMOVDQA AA0, AA3
    	VMOVDQA state1StoreAVX2, BB0; VMOVDQA BB0, BB1; VMOVDQA BB0, BB2; VMOVDQA BB0, BB3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    }
    
    func mspinning() {
    	// startm's caller incremented nmspinning. Set the new M's spinning.
    	getg().m.spinning = true
    }
    
    // Schedules some M to run the p (creates an M if necessary).
    // If p==nil, tries to get an idle P, if no idle P's does nothing.
    // May run with m.p==nil, so write barriers are not allowed.
    // If spinning is set, the caller has incremented nmspinning and must provide a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    		lock mutex
    		list gList
    	}
    
    	// cycles is the number of completed GC cycles, where a GC
    	// cycle is sweep termination, mark, mark termination, and
    	// sweep. This differs from memstats.numgc, which is
    	// incremented at mark termination.
    	cycles atomic.Uint32
    
    	// Timing/utilization stats for this cycle.
    	stwprocs, maxprocs                 int32
    	tSweepTerm, tMark, tMarkTerm, tEnd int64 // nanotime() of phase start
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top