Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 962 for inexact (0.15 sec)

  1. src/math/big/rat.go

    	if math.IsInf(f, 0) {
    		exact = false
    	}
    	return
    }
    
    // Float32 returns the nearest float32 value for x and a bool indicating
    // whether f represents x exactly. If the magnitude of x is too large to
    // be represented by a float32, f is an infinity and exact is false.
    // The sign of f always matches the sign of x, even if f == 0.
    func (x *Rat) Float32() (f float32, exact bool) {
    	b := x.b.abs
    	if len(b) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. ci/official/debug_tfci.sh

    # This script dumps some information about the environment. It's most useful
    # for verifying changes to the TFCI scripts system, and most users won't need
    # to interact with it at all.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    echo "==TFCI== env outside of tfrun:"
    env
    echo "==TFCI== env inside of tfrun:"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 01 19:54:25 UTC 2023
    - 1022 bytes
    - Viewed (0)
  3. tests/testdata/config/rule-websocket-route.yaml

    kind: VirtualService
    metadata:
      name: websocket-route
      namespace: testns
    spec:
      hosts:
        - websocket.test.istio.io
      http:
        - match:
          - headers:
              testwebsocket:
                exact: enabled
          route:
          - destination:
              host: websocket.test.istio.io
              subset: v1
              port:
                number: 9002
          websocketUpgrade: true
    
    ---
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. .generated_files

    # code.
    #
    # https://github.com/kubernetes/test-infra/blob/master/prow/plugins/size/size.go
    #
    # This file is a series of lines, each of the form:
    #     <type> <name>
    #
    # Type can be:
    #    path - an exact path to a single file
    #    file-name - an exact leaf filename, regardless of path
    #    path-prefix - a prefix match on the file path
    #    file-prefix - a prefix match of the leaf filename (no path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 23:47:25 UTC 2022
    - 750 bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-services/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Services used by the Gradle daemon to interact with the client"
    
    dependencies {
        api(projects.baseServices)
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
        api(libs.jsr305)
        api(project(":time"))
        api(project(":logging"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/doc.go

    // signatures, golang.org/x/crypto/curve25519 for Diffie-Hellman, or
    // github.com/gtank/ristretto255 for prime order group logic.
    //
    // However, developers who do need to interact with low-level edwards25519
    // operations can use filippo.io/edwards25519, an extended version of this
    // package repackaged as an importable module.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. architecture/standards/0005-introduce-core-ui-architecture-module.md

    ## Date
    
    2024-02-07
    
    ## Context
    
    The Gradle core platform provides many services to the Gradle platforms and builds logic. One such group of services allows logic to interact with the build user, to provide diagnostics, progress information, prompt for questions, and so on. Currently, these services are part of the core platform runtime architecture module.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 23:19:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/math/log10.go

    func Log2(x float64) float64 {
    	if haveArchLog2 {
    		return archLog2(x)
    	}
    	return log2(x)
    }
    
    func log2(x float64) float64 {
    	frac, exp := 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 Log(frac)*(1/Ln2) + float64(exp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 873 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExcludeRule.java

     * dependencies.
     */
    public interface ExcludeRule {
        String GROUP_KEY = "group";
        String MODULE_KEY = "module";
    
        /**
         * The exact name of the organization or group that should be excluded.
          */
        String getGroup();
    
        /**
         * The exact name of the module that should be excluded.
         */
        String getModule();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  10. pilot/pkg/xds/testdata/benchmarks/knative-gateway.yaml

        match:
        - authority:
            prefix: hello.default
          gateways:
          - knative-serving/knative-local-gateway
          headers:
            K-Network-Hash:
              exact: override
        route:
        - destination:
            host: hello-{{$i}}.default.svc.cluster.local
            port:
              number: 80
          headers:
            request:
              set:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 19 16:50:51 UTC 2021
    - 5.1K bytes
    - Viewed (0)
Back to top