Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,825 for cstdio (0.11 sec)

  1. src/cmd/internal/archive/testdata/mycgo/c1.c

    // 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.
    
    #include <stdio.h>
    
    void c1(void) {
    	puts("c1");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 10 22:16:32 UTC 2020
    - 211 bytes
    - Viewed (0)
  2. istioctl/pkg/workload/testdata/vmconfig/ipv4/istio-token.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - Viewed (0)
  3. cni/pkg/install/testdata/list-no-istio.conflist

    Pengyuan Bian <******@****.***> 1625172474 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 01 20:47:54 UTC 2021
    - 508 bytes
    - Viewed (0)
  4. manifests/addons/dashboards/istio-workload-dashboard.json

          "5m",
          "15m",
          "1h",
          "6h",
          "12h",
          "24h",
          "2d",
          "7d",
          "30d"
        ]
      },
      "timezone": "",
      "title": "Istio Workload Dashboard",
      "version": 1,
      "weekStart": ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/testdata/asan1_fail.go

    // Copyright 2021 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 main
    
    /*
    #include <stdlib.h>
    #include <stdio.h>
    
    int *p;
    int* test() {
     p = (int *)malloc(2 * sizeof(int));
     free(p);
     return p;
    }
    */
    import "C"
    import "fmt"
    
    func main() {
    	// C passes Go an invalid pointer.
    	a := C.test()
    	// Use after free
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 500 bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

        def app = new CppHelloWorldApp()
    
        def setup() {
            buildFile << """
                apply plugin: 'visual-studio'
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "create visual studio solution for project without C++ component"() {
            when:
            settingsFile << """
                rootProject.name = 'app'
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/android/AndroidHome.groovy

            It is not necessary to install the whole android SDK via Android Studio - it is enough if there is a ${'$'}ANDROID_SDK_ROOT/licenses/android-sdk-license containing the license keys from an Android Studio installation.
            The Gradle Android plugin will then download the SDK by itself, see https://developer.android.com/studio/intro/update.html#download-with-gradle
        """.stripIndent()
    
        private AndroidHome() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/istio-service-dashboard.json

          "5m",
          "15m",
          "1h",
          "6h",
          "12h",
          "24h",
          "2d",
          "7d",
          "30d"
        ]
      },
      "timezone": "",
      "title": "Istio Service Dashboard",
      "version": 1,
      "weekStart": ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprogcgo/bigstack_windows.c

    // This test source is used by both TestBigStackCallbackCgo (linked
    // directly into the Go binary) and TestBigStackCallbackSyscall
    // (compiled into a DLL).
    
    #include <windows.h>
    #include <stdio.h>
    
    #ifndef STACK_SIZE_PARAM_IS_A_RESERVATION
    #define STACK_SIZE_PARAM_IS_A_RESERVATION 0x00010000
    #endif
    
    typedef void callback(char*);
    
    // Allocate a stack that's much larger than the default.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 15:18:26 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  10. src/runtime/testdata/testwinlibsignal/main.c

    #include <windows.h>
    #include <stdio.h>
    
    HANDLE waitForCtrlBreakEvent;
    
    BOOL WINAPI CtrlHandler(DWORD fdwCtrlType)
    {
        switch (fdwCtrlType)
        {
        case CTRL_BREAK_EVENT:
            SetEvent(waitForCtrlBreakEvent);
            return TRUE;
        default:
            return FALSE;
        }
    }
    
    int main(void)
    {
        waitForCtrlBreakEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
        if (!waitForCtrlBreakEvent) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 13:21:00 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top