Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 461 for spdelta (0.15 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/MultiLineBuildProgressArea.java

        public void resizeBuildProgressTo(int buildProgressLabelCount) {
            int delta = buildProgressLabelCount - buildProgressLabels.size();
            if (delta <= 0) {
                // We don't support shrinking at the moment
                return;
            }
    
            int row = parkingLabel.getWritePosition().row;
            parkingLabel.scrollDownBy(delta);
            while (delta-- > 0) {
                DefaultRedrawableLabel label = newLabel(row--);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. test/fixedbugs/bug247.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	const (
    		Delta = 100 * 1e6
    		Count = 10
    	)
    	_ = int64(Delta * Count)
    	var i interface{} = Count
    	j := i.(int)
    	if j != Count {
    		println("j=", j)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 365 bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/MathTesting.java

                Long.MIN_VALUE,
                Long.MAX_VALUE)) {
          for (double delta : Doubles.asList(0.0, 1.0, 2.0)) {
            integralBuilder.addAll(Doubles.asList(d + delta, d - delta, -d - delta, -d + delta));
          }
          for (double delta : Doubles.asList(0.01, 0.1, 0.25, 0.499, 0.5, 0.501, 0.7, 0.8)) {
            double x = d + delta;
            if (x != Math.round(x)) {
              fractionalBuilder.add(x);
            }
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  4. src/unicode/letter.go

    // case representing sequences of alternating corresponding Upper and Lower
    // pairs. It appears with a fixed Delta of
    //
    //	{UpperLower, UpperLower, UpperLower}
    //
    // The constant UpperLower has an otherwise impossible delta value.
    type CaseRange struct {
    	Lo    uint32
    	Hi    uint32
    	Delta d
    }
    
    // SpecialCase represents language-specific case mappings such as Turkish.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/dwarf.go

    		}
    		if stmt != newStmt {
    			dctxt.AddUint8(lines, uint8(dwarf.DW_LNS_negate_stmt))
    			stmt = newStmt
    			wrote = true
    		}
    
    		if line != int64(newLine) || wrote {
    			pcdelta := p.Pc - pc
    			lastpc = p.Pc
    			putpclcdelta(ctxt, dctxt, lines, uint64(pcdelta), int64(newLine)-line)
    			line, pc = int64(newLine), p.Pc
    		}
    	}
    
    	// Because these symbols will be concatenated together by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_s390x.s

    	BR ·Cas64(SB)
    
    // func Xadd(ptr *uint32, delta int32) uint32
    // Atomically:
    //	*ptr += delta
    //	return *ptr
    TEXT ·Xadd(SB), NOSPLIT, $0-20
    	MOVD	ptr+0(FP), R4
    	MOVW	delta+8(FP), R5
    	MOVW	(R4), R3
    repeat:
    	ADD	R5, R3, R6
    	CS	R3, R6, (R4) // if R3==(R4) then (R4)=R6 else R3=(R4)
    	BNE	repeat
    	MOVW	R6, ret+16(FP)
    	RET
    
    // func Xadd64(ptr *uint64, delta int64) uint64
    TEXT ·Xadd64(SB), NOSPLIT, $0-24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy_delta.go

    		log.Debugf("failed to create delta upstream grpc client: %v", err)
    		// Increase metric when xds connection error, for example: forgot to restart ingressgateway or sidecar after changing root CA.
    		metrics.IstiodConnectionErrors.Increment()
    		return err
    	}
    	log.Infof("connected to delta upstream XDS server: %s", p.istiodAddress)
    	defer log.Debugf("disconnected from delta XDS server: %s", p.istiodAddress)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_loong64.go

    // license that can be found in the LICENSE file.
    
    //go:build loong64
    
    package atomic
    
    import "unsafe"
    
    //go:noescape
    func Xadd(ptr *uint32, delta int32) uint32
    
    //go:noescape
    func Xadd64(ptr *uint64, delta int64) uint64
    
    //go:noescape
    func Xadduintptr(ptr *uintptr, delta uintptr) uintptr
    
    //go:noescape
    func Xchg(ptr *uint32, new uint32) uint32
    
    //go:noescape
    func Xchg64(ptr *uint64, new uint64) uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/runtime/time_windows_386.s

    	MOVL	(_SYSTEM_TIME+time_lo), AX
    	MOVL	(_SYSTEM_TIME+time_hi2), DX
    	CMPL	CX, DX
    	JNE	wall
    
    	// w = DX:AX
    	// convert to Unix epoch (but still 100ns units)
    	#define delta 116444736000000000
    	SUBL	$(delta & 0xFFFFFFFF), AX
    	SBBL $(delta >> 32), DX
    
    	// nano/100 = DX:AX
    	// split into two decimal halves by div 1e9.
    	// (decimal point is two spots over from correct place,
    	// but we avoid overflow in the high word.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/runtime/time_windows_arm64.s

    	MOVD	time_lo(R3), R0
    	MOVD	$100, R1
    	MUL	R1, R0
    	MOVD	R0, mono+16(FP)
    
    	MOVD	$_SYSTEM_TIME, R3
    	MOVD	time_lo(R3), R0
    	// convert to Unix epoch (but still 100ns units)
    	#define delta 116444736000000000
    	SUB	$delta, R0
    	// Convert to nSec
    	MOVD	$100, R1
    	MUL	R1, R0
    
    	// Code stolen from compiler output for:
    	//
    	//	var x uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 906 bytes
    - Viewed (0)
Back to top