Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 963 for REAL (0.28 sec)

  1. src/math/cmplx/isinf.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cmplx
    
    import "math"
    
    // IsInf reports whether either real(x) or imag(x) is an infinity.
    func IsInf(x complex128) bool {
    	if math.IsInf(real(x), 0) || math.IsInf(imag(x), 0) {
    		return true
    	}
    	return false
    }
    
    // Inf returns a complex infinity, complex(+Inf, +Inf).
    func Inf() complex128 {
    	inf := math.Inf(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 02 22:47:58 UTC 2018
    - 506 bytes
    - Viewed (0)
  2. .github/workflows/mint/nginx-1-node.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: Fri Mar 31 21:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue41736.go

    	return C{&cx}
    }
    
    //go:noinline
    func (c C) X() C {
    	cx := complex(imag(*c.x), real(*c.x))
    	return C{&cx}
    }
    
    //go:noinline
    func (d D) X() C {
    	cx := complex(float64(imag(d.x)), -float64(real(d.x)))
    	return C{&cx}
    }
    
    //go:noinline
    func (a A) X() C {
    	cx := complex(-float64(imag(*a[0])), float64(real(*a[0])))
    	return C{&cx}
    }
    
    //go:noinline
    func (i I) id() I {
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 06 15:37:42 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue50912.go

    // Copyright 2022 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 p
    
    func Real[P ~complex128](x P) {
    	_ = real(x /* ERROR "not supported" */ )
    }
    
    func Imag[P ~complex128](x P) {
    	_ = imag(x /* ERROR "not supported" */ )
    }
    
    func Complex[P ~float64](x P) {
    	_ = complex(x /* ERROR "not supported" */ , 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 503 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    }
    
    // readChannel returns wsstream.ReadChannel if real is true, or wsstream.IgnoreChannel.
    func readChannel(real bool) wsstream.ChannelType {
    	if real {
    		return wsstream.ReadChannel
    	}
    	return wsstream.IgnoreChannel
    }
    
    // writeChannel returns wsstream.WriteChannel if real is true, or wsstream.IgnoreChannel.
    func writeChannel(real bool) wsstream.ChannelType {
    	if real {
    		return wsstream.WriteChannel
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    	// for compatibility shims. Consider:
    	//
    	//   //go:build go1.22
    	//   type T struct { F std.Real } // correct new API
    	//
    	//   //go:build !go1.22
    	//   type T struct { F fake } // shim
    	//   type fake struct { ... }
    	//   func (fake) M () {}
    	//
    	// These alternative declarations of T use either the std.Real
    	// type, introduced in go1.22, or a fake type, for the field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. .github/workflows/mint/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: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/vet/README

    rejected as not appropriate for the tool. The criteria applied when selecting which
    checks to add are:
    
    Correctness:
    
    Vet's checks are about correctness, not style. A vet check must identify real or
    potential bugs that could cause incorrect compilation or execution. A check that
    only identifies stylistic points or alternative correct approaches to a situation
    is not acceptable.
    
    Frequency:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  9. src/log/slog/internal/benchmarks/benchmarks.go

    //
    //   - The benchmarked code is run concurrently in multiple goroutines, to
    //     better simulate a real server (the most common environment for structured
    //     logs).
    //
    //   - Some handlers are optimistic versions of real handlers, doing real-world
    //     tasks as fast as possible (and sometimes faster, in that an
    //     implementation may not be concurrency-safe). This gives us an upper bound
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. .github/workflows/mint/nginx-4-node.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: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top