Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for __real__ (0.19 sec)

  1. src/cmd/cgo/internal/test/issue9510b/b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue9510b
    
    /*
    static double csquare(double a, double b) {
    	__complex__ double d;
    	__real__ d = a;
    	__imag__ d = b;
    	return __real__ (d * d);
    }
    */
    import "C"
    
    func F(a, b float64) float64 {
    	return float64(C.csquare(C.double(a), C.double(b)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 413 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue9510a/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue9510a
    
    /*
    static double csquare(double a, double b) {
    	__complex__ double d;
    	__real__ d = a;
    	__imag__ d = b;
    	return __real__ (d * d);
    }
    */
    import "C"
    
    func F(a, b float64) float64 {
    	return float64(C.csquare(C.double(a), C.double(b)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 413 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue29563/weak1.c

    // Copyright 2019 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.
    
    extern int weaksym __attribute__((__weak__));
    int weaksym = 42;
    
    int foo1()
    {
    	return weaksym;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 257 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue29563/weak2.c

    // Copyright 2019 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.
    
    extern int weaksym __attribute__((__weak__));
    int weaksym = 42;
    
    int foo2()
    {
    	return weaksym;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 257 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFailuresIntegrationTest.groovy

            '''
    
            when:
            configurationCacheFails 'test'
    
            then:
            failure.assertHasFailure("Configuration cache state could not be cached: field `files` of `Bean` bean found in field `__bean__` of task `:test` of type `Test`: error writing value of type 'org.gradle.api.internal.artifacts.configurations.DefaultUnlockedConfiguration'") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. fastapi/params.py

                kwargs.update(**current_json_schema_extra)
            use_kwargs = {k: v for k, v in kwargs.items() if v is not _Unset}
    
            super().__init__(**use_kwargs)
    
        def __repr__(self) -> str:
            return f"{self.__class__.__name__}({self.default})"
    
    
    class Path(Param):
        in_ = ParamTypes.path
    
        def __init__(
            self,
            default: Any = ...,
            *,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/escaping_test.go

    		{unescaped: "false", escaped: "__false__"},
    		{unescaped: "null", escaped: "__null__"},
    		{unescaped: "in", escaped: "__in__"},
    		{unescaped: "as", escaped: "__as__"},
    		{unescaped: "break", escaped: "__break__"},
    		{unescaped: "const", escaped: "__const__"},
    		{unescaped: "continue", escaped: "__continue__"},
    		{unescaped: "else", escaped: "__else__"},
    		{unescaped: "for", escaped: "__for__"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			}),
    			valid: []string{
    				// CEL lexer RESERVED keywords must be escaped
    				"self.__true__ == 1", "self.__false__ == 2", "self.__null__ == 3", "self.__in__ == 4", "self.__as__ == 5",
    				"self.__break__ == 6", "self.__const__ == 7", "self.__continue__ == 8", "self.__else__ == 9",
    				"self.__for__ == 10", "self.__function__ == 11", "self.__if__ == 12", "self.__import__ == 13",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

    * Remove obsolete Chinese articles after adding official community translations. PR [#1510](https://github.com/tiangolo/fastapi/pull/1510) by [@waynerv](https://github.com/waynerv).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  10. RELEASE.md

    ## Breaking Changes
    
    *   Deletes `Operation.traceback_with_start_lines` for which we know of no
        usages.
    *   Removed `id` from `tf.Tensor.__repr__()` as `id` is not useful other than
        internal debugging.
    *   Some `tf.assert_*` methods now raise assertions at operation creation time
        if the input tensors' values are known at that time, not during the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top