Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,077 for zout (0.04 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

                int main () {
                  #ifdef ENABLE_GREETING
                  std::cout << "Hello!";
                  #endif
                  return 0;
                }
            """
    
            when:
            run "mainExecutable"
    
            then:
            def executable = executable("build/exe/main/main")
            executable.exec().out == "Hello!"
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/src/hello/cpp/hello.cpp

        std::wstring wide = std::wstring(pBuf, len);
        return std::string(wide.begin(), wide.end());
    }
    
    void hello() {
        std::string hello = LoadStringFromResource(IDS_HELLO);
        std::cout << hello << std::endl;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 528 bytes
    - Viewed (0)
  3. docs/fr/docs/contributing.md

    # Développement - Contribuer
    
    Tout d'abord, vous voudrez peut-être voir les moyens de base pour [aider FastAPI et obtenir de l'aide](help-fastapi.md){.internal-link target=_blank}.
    
    ## Développement
    
    Si vous avez déjà cloné le dépôt et que vous savez que vous devez vous plonger dans le code, voici quelques directives pour mettre en place votre environnement.
    
    ### Environnement virtuel avec `venv`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/a.out.go

    // cmd/9c/9.out.h from Vita Nuova.
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2008 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-uint8-return.pbtxt

    node {
      name: "PartitionedCall"
      op: "PartitionedCall"
      attr {
        key: "Tin"
        value {
          list {
          }
        }
      }
      attr {
        key: "Tout"
        value {
          list {
            type: DT_UINT8
          }
        }
      }
      attr {
        key: "_gradient_op_type"
        value {
          s: "PartitionedCall-15"
        }
      }
      attr {
        key: "config"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/empty-value-attr.pbtxt

    node {
      name: "_tf.PartitionedCall"
      op: "PartitionedCall"
      attr {
        key: "Tin"
        value {
          list {
          }
        }
      }
      attr {
        key: "Tout"
        value {
          list {
            type: DT_FLOAT
          }
        }
      }
      attr {
        key: "f"
        value {
          func {
            name: "foo"
          }
        }
      }
    }
    library {
      function {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppAlternateSourceGreeterFunction.groovy

            super(publicHeaderDir)
    
            source = ofFile(sourceFile("cpp", "greeter.cpp", """
    #include <iostream>
    #include "greeter.h"
    
    void sayGreeting() {
        std::cout << "${HelloWorldApp.HELLO_WORLD} - ${HelloWorldApp.HELLO_WORLD_FRENCH}" << std::endl;
    }
    """))
        }
    
        @Override
        CppAlternateSourceGreeterFunction asLib() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. docs/fr/docs/python-types.md

    * **Documenter** l'API avec OpenAPI :
        * ce qui ensuite utilisé par les interfaces utilisateur automatiques de documentation interactive.
    
    Tout cela peut paraître bien abstrait, mais ne vous inquiétez pas, vous verrez tout ça en pratique dans [Tutoriel - Guide utilisateur](tutorial/index.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppLogger.groovy

    };
    """))
    
        final SourceFileElement source = ofFile(new SourceFile("cpp", "logger.cpp", """
    #include <iostream>
    #include "logger.h"
    
    void Logger::log(std::string &str) {
        std::cout << str << std::endl;
    }
    """))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/a.out.go

    // Based on cmd/internal/obj/ppc64/a.out.go.
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2008 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top