Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 273 for 05 (0.03 sec)

  1. docs/changelogs/changelog_1x.md

       `X-Android-Selected-Transport` to read the negotiated transport.
    
    
    ## Version 1.0.2
    
    _2013-05-11_
    
     * Fix: Remove use of Java 6-only APIs.
     * Fix: Properly handle exceptions from `NetworkInterface` when querying MTU.
     * Fix: Ensure MTU has a reasonable default and upper-bound.
    
    
    ## Version 1.0.1
    
    _2013-05-06_
    
     * Correct casing of SSL in method names (`getSslSocketFactory`/`setSslSocketFactory`).
    
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_sampler_v1.0.0.txt

    rsc.io/sampler@v1.0.0
    
    -- .mod --
    module "rsc.io/sampler"
    -- .info --
    {"Version":"v1.0.0","Name":"60bef405c52117ad21d2adb10872b95cf17f8fca","Short":"60bef405c521","Time":"2018-02-13T18:05:54Z"}
    -- go.mod --
    module "rsc.io/sampler"
    -- sampler.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package sampler shows simple texts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 568 bytes
    - Viewed (0)
  3. hack/testdata/sorted-pods/sorted-pod2.yaml

      labels:
        name: sorted-pod2-label
    spec:
      containers:
      - name: kubernetes-pause1
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "1G"
            cpu: "0.5"
          limits:
            memory: "2G"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 347 bytes
    - Viewed (0)
  4. test/fixedbugs/issue41780.go

    	dp int     // decimal point
    }
    
    var powtab = []int{1, 3, 6, 9, 13, 16, 19, 23, 26}
    
    //go:noinline
    func foo(d *decimal) int {
    	exp := int(d.d[1])
    	if d.dp < 0 || d.dp == 0 && d.d[0] < '5' {
    		var n int
    		if -d.dp >= len(powtab) {
    			n = 27
    		} else {
    			n = powtab[-d.dp] // incorrect CMP -> CMN substitution causes indexing panic.
    		}
    		exp += n
    	}
    	return exp
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 06 01:14:39 UTC 2020
    - 845 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/kotlin/src/main/webapp/hello.jsp

    <html>
    <head><title>Randomizer</title></head>
    <body>
    <%
        double num = Math.random();
        if (num > 0.5) {
    %>
    <h2>It's your lucky day!</h2><p>(<%= num %>)</p>
    <%
    } else {
    %>
    <h2>Sorry...bad day</h2><p>(<%= num %>)</p>
    <%
        }
    %>
    <a href="<%= request.getRequestURI() %>"><h3>Try Again</h3></a>
    </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/components/post_calibration_component.mlir

    // around it is quantized. The resulting graph has quantized types unpacked into
    // int ops.
    func.func @main(%arg0: tensor<1x1024xf32>) -> tensor<1x3xf32> {
      %0 = "tf.Const"() <{value = dense<0.5> : tensor<1024x3xf32>}> : () -> tensor<1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/runtime/mkfastlog2table.go

    func log2(x float64) float64 {
    	frac, exp := math.Frexp(x)
    	// Make sure exact powers of two give an exact answer.
    	// Don't depend on Log(0.5)*(1/Ln2)+exp being exactly exp-1.
    	if frac == 0.5 {
    		return float64(exp - 1)
    	}
    	return float64(nlog(frac)*(1/math.Ln2)) + float64(exp)
    }
    
    // nlog is a local copy of math.Log with explicit float64 conversions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 22:12:19 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. test/fixedbugs/bug194.go

    var v4 = T4{0: 5, 1: 6}
    var v5 = T5{0: 7, 1: 8}
    var v6 = T2{f: 9}
    var v7 = T4{f: 10}
    var v8 = T5{f: 11}
    var pf func(T1)
    
    func main() {
    	if v1 != 1 || v2.f != 2 || v3[0] != 3 || v3[1] != 4 ||
    		v4[0] != 5 || v4[1] != 6 || v5[0] != 7 || v5[1] != 8 ||
    		v6.f != 9 || v7[0] != 10 || v8[0] != 11 {
    		panic("fail")
    	}
    }
    
    type T1 int
    type T2 struct {
    	f int
    }
    type T3 []int
    type T4 [2]int
    type T5 map[int]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 651 bytes
    - Viewed (0)
  9. src/math/cmplx/example_test.go

    func ExampleExp() {
    	fmt.Printf("%.1f", cmplx.Exp(1i*math.Pi)+1)
    	// Output: (0.0+0.0i)
    }
    
    func ExamplePolar() {
    	r, theta := cmplx.Polar(2i)
    	fmt.Printf("r: %.1f, θ: %.1f*π", r, theta/math.Pi)
    	// Output: r: 2.0, θ: 0.5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 19:49:12 UTC 2016
    - 567 bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/sys_linux_arm.s

    	RET
    native_barrier2:
    	DMB	MB_ISH
    	RET
    
    TEXT	·Load8(SB),NOSPLIT,$0-5
    	MOVW	addr+0(FP), R0
    	MOVB	(R0), R1
    
    	MOVB	runtime·goarm(SB), R11
    	CMP	$7, R11
    	BGE	native_barrier
    	BL	memory_barrier<>(SB)
    	B	end
    native_barrier:
    	DMB	MB_ISH
    end:
    	MOVB	R1, ret+4(FP)
    	RET
    
    TEXT	·Store8(SB),NOSPLIT,$0-5
    	MOVW	addr+0(FP), R1
    	MOVB	v+4(FP), R2
    
    	MOVB	runtime·goarm(SB), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top