Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 963 for REAL (0.03 sec)

  1. src/strconv/ctoa.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strconv
    
    // FormatComplex converts the complex number c to a string of the
    // form (a+bi) where a and b are the real and imaginary parts,
    // formatted according to the format fmt and precision prec.
    //
    // The format fmt and precision prec have the same meaning as in [FormatFloat].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/WithEstimatedSize.java

         * intended to return a value which is greater or equal to the real size (pessimistic). The typical use
         * case is creating a hash set or hash map of a collection without knowing the number of elements it
         * will contain. With this method we can properly size it and avoid resizes. The reason we use an
         * estimate size instead of the real size is that sometimes the real size is too expensive to compute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 18 08:11:23 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  3. src/math/cmplx/cmath_test.go

    func cAlike(a, b complex128) bool {
    	var realAlike, imagAlike bool
    	if isExact(real(b)) {
    		realAlike = alike(real(a), real(b))
    	} else {
    		// Allow non-exact special cases to have errors in ULP.
    		realAlike = veryclose(real(a), real(b))
    	}
    	if isExact(imag(b)) {
    		imagAlike = alike(imag(a), imag(b))
    	} else {
    		// Allow non-exact special cases to have errors in ULP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/graceful_termination_test.go

    					{
    						IP:       "1.1.1.1",
    						Port:     80,
    						Protocol: "udp",
    					}: {}, // udp real server deleted immediately
    				},
    			},
    			err: nil,
    		},
    		{
    			name: "graceful delete, real server mismatch should be no-op",
    			vs: &utilipvs.VirtualServer{
    				Address:  netutils.ParseIPSloppy("1.1.1.1"),
    				Protocol: "tcp",
    				Port:     uint16(80),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. src/internal/trace/parser.go

    	EvUserLog           = 48 // trace.Log [timestamp, internal id, key string id, stack, value string]
    	EvCPUSample         = 49 // CPU profiling sample [timestamp, real timestamp, real P id (-1 when absent), goroutine id, stack]
    	EvCount             = 50
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. docs/orchestration/docker-compose/nginx.conf

                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
                proxy_set_header X-NginX-Proxy true;
    
                # This is necessary to pass the correct IP to be hashed
                real_ip_header X-Real-IP;
    
                proxy_connect_timeout 300;
                
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 05 06:32:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. hack/README.md

    For details, refer to the following guidelines.
    
    ## Key scripts
    
    * [`verify-all.sh`](verify-all.sh): This script is a vestigial redirection, Please do not add "real" logic. It is equivalent to `make verify`.
    * [`update-all.sh`](update-all.sh): This script is a vestigial redirection, Please do not add "real" logic. 
    The `true` target of this makerule is `hack/make-rules/update.sh`.It is equivalent to `make update`.
    
    ## Attention
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 16 02:12:18 UTC 2020
    - 1K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

    
            Did you *actually* encounter the need for this feature in a real-world scenario, or is it
            just a feature that seems like a sensible addition to Guava?
    
    
            Before new features get added to Guava, we really want to be sure that it's for a use case
            that actually comes up in the real world. We want to hear the real-world use case so the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. test/typeparam/absdiff3.go

    	switch z := x.(type) {
    	case complex64:
    		re = float64(real(z))
    		im = float64(imag(z))
    	case complex128:
    		re = real(z)
    		im = imag(z)
    	default:
    		panic("unknown complex type")
    	}
    	return
    }
    
    func ComplexAbs[T Complex](a T) T {
    	// TODO use direct conversion instead of realimag once #50937 is fixed
    	r, i := realimag(a)
    	// r := float64(real(a))
    	// i := float64(imag(a))
    	d := math.Sqrt(r*r + i*i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. test/typeparam/absdiffimp2.dir/a.go

    	switch z := x.(type) {
    	case complex64:
    		re = float64(real(z))
    		im = float64(imag(z))
    	case complex128:
    		re = real(z)
    		im = imag(z)
    	default:
    		panic("unknown complex type")
    	}
    	return
    }
    
    func (a complexAbs[T]) Abs() T {
    	// TODO use direct conversion instead of realimag once #50937 is fixed
    	r, i := realimag(a.Value_)
    	// r := float64(real(a.Value))
    	// i := float64(imag(a.Value))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top