Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 310 for roundup (0.27 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

      queue: TaskQueue,
      message: String,
    ) {
      fine("${queue.name} ${String.format("%-22s", message)}: ${task.name}")
    }
    
    /**
     * Returns a duration in the nearest whole-number units like "999 µs" or "  1 s ". This rounds 0.5
     * units away from 0 and 0.499 towards 0. The smallest unit this returns is "µs"; the largest unit
     * it returns is "s". For values in [-499..499] this returns "  0 µs".
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/config/config.go

    		discHost = "istiod.istio-system.svc"
    	}
    	return discHost
    }
    
    var CPULimit = env.Register(
    	"ISTIO_CPU_LIMIT",
    	0,
    	"CPU limit for the current process. Expressed as an integer value, rounded up.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/math/big/bits_test.go

    			// b > r
    			if b == r+1 {
    				bit0 = 1
    			}
    			z = append(z, b)
    		}
    	}
    
    	// round
    	f := z.Float() // rounded to zero
    	if mode == ToNearestAway {
    		panic("not yet implemented")
    	}
    	if mode == ToNearestEven && rbit == 1 && (sbit == 1 || sbit == 0 && bit0 != 0) || mode == AwayFromZero {
    		// round away from zero
    		f.SetMode(ToZero).SetPrec(prec)
    		f.Add(f, Bits{int(r) + 1}.Float())
    	}
    	return f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/crypto/md5/gen.go

    		0x8d2a4c8a,
    	},
    	Table3: []uint32{
    		// round3
    		0xfffa3942,
    		0x8771f681,
    		0x6d9d6122,
    		0xfde5380c,
    		0xa4beea44,
    		0x4bdecfa9,
    		0xf6bb4b60,
    		0xbebfbc70,
    		0x289b7ec6,
    		0xeaa127fa,
    		0xd4ef3085,
    		0x4881d05,
    		0xd9d4d039,
    		0xe6db99e5,
    		0x1fa27cf8,
    		0xc4ac5665,
    	},
    	Table4: []uint32{
    		// round 4
    		0xf4292244,
    		0x432aff97,
    		0xab9423a7,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java

        // The values here look like 111...11101...010 in binary, where the initial 111...1110 takes
        // up exactly as many bits as can be represented in the significand (24 for float, 53 for
        // double). That final 0 should be rounded up to 1 because the remaining bits make that number
        // slightly nearer.
        long floatConversionTest = 0xfffffe8000000002L;
        long doubleConversionTest = 0xfffffffffffff402L;
    
        for (long i = -3; i <= 3; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/tests/decompose.mlir

    // CHECK: %[[rounded:.*]] = tfr.call @tf__round(%[[rescaled]]) : (!tfr.tensor) -> !tfr.tensor
    // CHECK: %[[zp_cast:.*]] = tfr.call @tf__cast(%[[zp]], %[[f32]], %false) : (!tfr.tensor, !tfr.attr, i1) -> !tfr.tensor
    // CHECK: %[[recentered:.*]] = tfr.call @tf__add(%[[rounded]], %[[zp_cast]]) : (!tfr.tensor, !tfr.tensor) -> !tfr.tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    		Body:       io.NopCloser(&bytes.Buffer{}),
    		Request:    req,
    	}, nil
    }
    
    // MirrorRequest is a round tripper that can be called to get back the calling request as
    // the core round tripper in a chain.
    var MirrorRequest http.RoundTripper = onewayRoundTripper{}
    
    // NewUpgradeRequestRoundTripper takes two round trippers - one for the underlying TCP connection, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. src/math/big/sqrt.go

    	"sync"
    )
    
    var threeOnce struct {
    	sync.Once
    	v *Float
    }
    
    func three() *Float {
    	threeOnce.Do(func() {
    		threeOnce.v = NewFloat(3.0)
    	})
    	return threeOnce.v
    }
    
    // Sqrt sets z to the rounded square root of x, and returns it.
    //
    // If z's precision is 0, it is changed to x's precision before the
    // operation. Rounding is performed according to z's precision and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	RDTSC:           "RDTSC",
    	RDTSCP:          "RDTSCP",
    	RET:             "RET",
    	ROL:             "ROL",
    	ROR:             "ROR",
    	ROUNDPD:         "ROUNDPD",
    	ROUNDPS:         "ROUNDPS",
    	ROUNDSD:         "ROUNDSD",
    	ROUNDSS:         "ROUNDSS",
    	RSM:             "RSM",
    	RSQRTPS:         "RSQRTPS",
    	RSQRTSS:         "RSQRTSS",
    	SAHF:            "SAHF",
    	SAR:             "SAR",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  10. src/runtime/debug/mod_test.go

    	f.Add(strip(`
    		go 1.18
    		path example.com/m
    		build CRAZY_ENV="requires\nescaping"
    		`))
    
    	f.Fuzz(func(t *testing.T, s string) {
    		bi, err := debug.ParseBuildInfo(s)
    		if err != nil {
    			// Not a round-trippable BuildInfo string.
    			t.Log(err)
    			return
    		}
    
    		// s2 could have different escaping from s.
    		// However, it should parse to exactly the same contents.
    		s2 := bi.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 19:44:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top