Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for n12 (0.02 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/HelloWorldApp.java

        public String getEnglishOutput() {
            return HELLO_WORLD + "\n12";
        }
    
        public String getFrenchOutput() {
            return HELLO_WORLD_FRENCH + "\n12";
        }
    
        public String getCustomOutput(String value) {
            return value + "\n12";
        }
    
        public String getExtraConfiguration() {
            return "";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCppHelloWorldApp.groovy

                int DLL_FUNC sum(int a, int b) {
                    return a + b;
                }
            """)]
        }
    
        String alternateLibraryOutput = "${HELLO_WORLD} - ${HELLO_WORLD_FRENCH}\n12"
    
        String getExtraConfiguration(String binaryName = null) {
            return """
                model {
                    binaries {
                        ${binaryName ? binaryName : "all"} {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCHelloWorldApp.groovy

                int sum(int a, int b)
                {
                    return a + b;
                }
            """)]
        }
    
        String alternateLibraryOutput = "${HELLO_WORLD} - ${HELLO_WORLD_FRENCH}\n12"
    
        String getExtraConfiguration(String binaryName = null) {
            return """
                model {
                    binaries {
                        ${binaryName ? binaryName : "all"} {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/javaPluginTasks.graphml

        </edge>
        <edge id="e10" source="n4" target="n12">
          <data key="d9">
            <y:QuadCurveEdge straightness="0.1">
              <y:Path sx="70.0" sy="-0.0" tx="-70.0" ty="-0.0"/>
              <y:LineStyle color="#000000" type="line" width="1.0"/>
              <y:Arrows source="delta" target="none"/>
            </y:QuadCurveEdge>
          </data>
        </edge>
        <edge id="e11" source="n12" target="n8">
          <data key="d9">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

                    int DLL_FUNC sum(int a, int b) {
                        return a + b;
                    }
                """)
        ]
    
        String alternateLibraryOutput = "[${HELLO_WORLD} - ${HELLO_WORLD_FRENCH}]\n12"
    
        TestNativeComponent getCunitTests() {
            return new TestNativeComponent() {
                List<SourceFile> sourceFiles = [
                        sourceFile("c", "test.c", """
    #include <CUnit/Basic.h>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppHelloWorldApp.groovy

                int DLL_FUNC sum(int a, int b) {
                    return a + b;
                }
            """)
        ]
    
        String alternateLibraryOutput = "[${HELLO_WORLD} - ${HELLO_WORLD_FRENCH}]\n12"
    
        TestNativeComponent getGoogleTestTests() {
            return new TestNativeComponent() {
                List<SourceFile> sourceFiles = [
                        sourceFile("cpp", "test.cpp", """
    #include "gtest/gtest.h"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    		{`package n10; var (x *int; _ = x == nil)`, `nil`, `*int`},
    		{`package n11; var (x func(); _ = x == nil)`, `nil`, `func()`},
    		{`package n12; var (x []byte; _ = x == nil)`, `nil`, `[]byte`},
    		{`package n13; var (x map[int]int; _ = x == nil)`, `nil`, `map[int]int`},
    		{`package n14; var (x chan int; _ = x == nil)`, `nil`, `chan int`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		{`package n10; var (x *int; _ = x == nil)`, `nil`, `untyped nil`},
    		{`package n11; var (x func(); _ = x == nil)`, `nil`, `untyped nil`},
    		{`package n12; var (x []byte; _ = x == nil)`, `nil`, `untyped nil`},
    		{`package n13; var (x map[int]int; _ = x == nil)`, `nil`, `untyped nil`},
    		{`package n14; var (x chan int; _ = x == nil)`, `nil`, `untyped nil`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top