Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 670 for findRef (0.39 sec)

  1. src/cmd/cgo/internal/test/issue20266/issue20266.h

    // Copyright 2017 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.
    
    #define issue20266 20266
    
    #ifndef def20266
    #error "expected def20266 to be defined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 251 bytes
    - Viewed (0)
  2. docs/de/docs/reference/dependencies.md

    # Abhängigkeiten – `Depends()` und `Security()`
    
    ## `Depends()`
    
    Abhängigkeiten werden hauptsächlich mit der speziellen Funktion `Depends()` behandelt, die ein Callable entgegennimmt.
    
    Hier finden Sie deren Referenz und Parameter.
    
    Sie können sie direkt von `fastapi` importieren:
    
    ```python
    from fastapi import Depends
    ```
    
    ::: fastapi.Depends
    
    ## `Security()`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:16:45 UTC 2024
    - 765 bytes
    - Viewed (0)
  3. src/internal/bytealg/indexbyte_ppc64x.s

    	// R4 = length
    	MOVD	R6, R5		// R5 = byte
    	BR	indexbytebody<>(SB)
    
    TEXT ·IndexByteString<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-32
    	// R3 = string
    	// R4 = length
    	// R5 = byte
    	BR	indexbytebody<>(SB)
    
    #ifndef GOPPC64_power9
    #ifdef GOARCH_ppc64le
    DATA indexbytevbperm<>+0(SB)/8, $0x3830282018100800
    DATA indexbytevbperm<>+8(SB)/8, $0x7870686058504840
    #else
    DATA indexbytevbperm<>+0(SB)/8, $0x0008101820283038
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/cpp-source/lib.h

    #ifndef PROJECT_HEADER_${functionName}_H
    #define PROJECT_HEADER_${functionName}_H
    <% functionCount.times { %>
    long CPP_${functionName}_${it + 1} ();
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 200 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCppHelloWorldApp.groovy

                    return 0;
                }
            """)
        }
    
        @Override
        SourceFile getLibraryHeader() {
            return sourceFile("headers", "hello.h", """
                #ifndef HELLO_H
                #define HELLO_H
                #ifdef _WIN32
                #define DLL_FUNC __declspec(dllexport)
                #else
                #define DLL_FUNC
                #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. docs/de/docs/alternatives.md

    !!! check "Inspirierte **FastAPI**"
        Wege zu finden, eine großartige Performanz zu erzielen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:28 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents/header.h

    #ifndef HEADER_${generatedId}_H
    #define HEADER_${generatedId}_H
    
    <%
    includes.each { include ->
        out.println "#include \"$include\""
    }
    %>
    
    int function_${generatedId}();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 206 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/pre-compiled-headers/groovy/src/hello/headers/hello.h

    #ifndef HELLO_H
    #define HELLO_H
    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    class Greeter {
        public:
        void LIB_FUNC hello();
    };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-monolithic/src/src.h

    #ifndef PROJECT_HEADER_${sourceIdx}_H
    #define PROJECT_HEADER_${sourceIdx}_H
    
    <% sourceIdx.times { %>
    #include "src${it}_h.h"
    <% } %>
    
    
    <% functionCount.times { %>
    int C_function_${(it+1)+offset} (); 
    int CPP_function_${(it+1)+offset} (); 
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 287 bytes
    - Viewed (0)
  10. tensorflow/c/tf_status_internal.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_TF_STATUS_INTERNAL_H_
    #define TENSORFLOW_C_TF_STATUS_INTERNAL_H_
    
    #include "xla/tsl/c/tsl_status_internal.h"
    
    typedef struct TSL_Status TF_Status;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 885 bytes
    - Viewed (0)
Back to top