Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for 05 (0.06 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpecTest.groovy

            spec.isSatisfiedBy(GradleVersion.version("2.56"))
    
            !spec.isSatisfiedBy(GradleVersion.version("0.9.2"))
            !spec.isSatisfiedBy(GradleVersion.version("0.5"))
        }
    
        def "greater-than version constraint matches all versions later than specified base version"() {
            def spec = new GradleVersionSpec().toSpec(">1.0")
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

            (TF_LogicalOrOp
              (TF_GreaterOp
                (TF_SubOp:$fraction $input, (TF_FloorOp:$round_val $input)),
                (TF_ConstOp:$half (GetScalarOfFloatType<"0.5"> $input))
              ),
              (TF_LogicalAndOp
                // If the input is equal to 0.5 ...
                (TF_EqualOp
                  $fraction,
                  $half,
                  /*incompatible_shape_error*/ConstBoolAttrTrue
                ),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/go.mod

    	github.com/modern-go/reflect2 v1.0.2 // indirect
    	github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
    	github.com/spf13/pflag v1.0.5 // indirect
    	github.com/x448/float16 v0.8.4 // indirect
    	golang.org/x/net v0.25.0 // indirect
    	golang.org/x/text v0.15.0 // indirect
    	google.golang.org/protobuf v1.33.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/go.mod

    	github.com/google/gofuzz v1.2.0
    	github.com/google/uuid v1.3.1
    	github.com/moby/spdystream v0.2.0
    	github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
    	github.com/onsi/ginkgo/v2 v2.19.0
    	github.com/spf13/pflag v1.0.5
    	github.com/stretchr/testify v1.8.4
    	golang.org/x/net v0.25.0
    	golang.org/x/time v0.3.0
    	gopkg.in/evanphx/json-patch.v4 v4.12.0
    	gopkg.in/inf.v0 v0.9.1
    	k8s.io/klog/v2 v2.120.1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. doc/next/7-ports.md

    <!-- go.dev/issue/60905, CL 559555 -->
    Go 1.23 introduces a new `GOARM64` environment variable, which specifies the minimum target version of the ARM64 architecture at compile time. Allowed values are `v8.{0-9}` and `v9.{0-5}`. This may be followed by an option specifying extensions implemented by target hardware. Valid options are `,lse` and `,crypto`.
    
    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/math/big/float.go

    			// considered "1.0", for p == 0, the mantissa value m is >= 0.5.
    			// If m > 0.5, it is rounded up to 1.0; i.e., the smallest denormal.
    			// If m == 0.5, it is rounded down to even, i.e., 0.0.
    			// If p < 0, the mantissa value m is <= "0.25" which is never rounded up.
    			if p < 0 /* m <= 0.25 */ || p == 0 && x.mant.sticky(uint(len(x.mant))*_W-1) == 0 /* m == 0.5 */ {
    				// underflow to ±0
    				if x.neg {
    					var z float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  7. src/math/big/floatexample_test.go

    	// z = 1002.718282 (0x.faadf854p+10, prec = 32, acc = Below)
    }
    
    func ExampleFloat_shift() {
    	// Implement Float "shift" by modifying the (binary) exponents directly.
    	for s := -5; s <= 5; s++ {
    		x := big.NewFloat(0.5)
    		x.SetMantExp(x, x.MantExp(nil)+s) // shift x by s
    		fmt.Println(x)
    	}
    	// Output:
    	// 0.015625
    	// 0.03125
    	// 0.0625
    	// 0.125
    	// 0.25
    	// 0.5
    	// 1
    	// 2
    	// 4
    	// 8
    	// 16
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. go.mod

    	github.com/minio/zipindex v0.3.0
    	github.com/mitchellh/go-homedir v1.1.0
    	github.com/nats-io/nats-server/v2 v2.9.23
    	github.com/nats-io/nats.go v1.35.0
    	github.com/nats-io/stan.go v0.10.4
    	github.com/ncw/directio v1.0.5
    	github.com/nsqio/go-nsq v1.1.0
    	github.com/philhofer/fwd v1.1.2
    	github.com/pierrec/lz4 v2.6.1+incompatible
    	github.com/pkg/errors v0.9.1
    	github.com/pkg/sftp v1.13.6
    	github.com/pkg/xattr v0.4.9
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/go.sum

    github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
    github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA=
    github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
    github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
    github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/go.mod

    	github.com/google/uuid v1.3.1
    	github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de
    	github.com/moby/term v0.0.0-20221205130635-1aeaba878587
    	github.com/spf13/cobra v1.8.0
    	github.com/spf13/pflag v1.0.5
    	github.com/stretchr/testify v1.8.4
    	golang.org/x/sync v0.7.0
    	golang.org/x/text v0.15.0
    	gopkg.in/evanphx/json-patch.v4 v4.12.0
    	gopkg.in/yaml.v2 v2.4.0
    	k8s.io/api v0.0.0
    	k8s.io/apimachinery v0.0.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top