Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,847 for main2 (0.04 sec)

  1. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		ccArgs = append(cc, "-o", exe, "-nopie", "main5.c", "libgo2.a")
    		out, err = exec.Command(ccArgs[0], ccArgs[1:]...).CombinedOutput()
    		t.Logf("%v\n%s", ccArgs, out)
    	}
    
    	// Don't use either -no-pie or -nopie
    	if err != nil && bytes.Contains(out, []byte("unrecognized")) {
    		ccArgs = append(cc, "-o", exe, "main5.c", "libgo2.a")
    		out, err = exec.Command(ccArgs[0], ccArgs[1:]...).CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcarchive/testdata/main3.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test os/signal.Notify and os/signal.Reset.
    // This is a lot like ../testcshared/main5.c.
    
    #include <signal.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <time.h>
    #include <sched.h>
    #include <unistd.h>
    #include <pthread.h>
    
    #include "libgo3.h"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcshared/testdata/main5.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a signal handler works in non-Go code when using
    // os/signal.Notify.
    // This is a lot like ../testcarchive/main3.c.
    
    #include <signal.h>
    #include <stdbool.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <time.h>
    #include <sched.h>
    #include <dlfcn.h>
    
    static void die(const char* msg) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/main0.go

    // Copyright 2020 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
    
    func main()
    func main /* ERROR "no arguments and no return values" */ /* ERROR "redeclared" */ (int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 365 bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/templates/layouts/main.html

    {{ define "main" }}
    <main>
        <div class="container-fluid">
            <div class="row row-offcanvas">
                <div class="col-0 col-md-3 col-xl-2 sidebar-offcanvas">
                    {{ template "sidebar" . }}
                </div>
    
                <div class="col-12 col-md-9 col-xl-10">
                    <main aria-labelledby="title">
                        <h1 id="title">{{template "title" .}}</h1>
                        {{ template "content" . }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 528 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testplugin/testdata/issue18676/main.go

    // license that can be found in the LICENSE file.
    
    // The bug happened like this:
    //  1. The main binary adds an itab for *json.UnsupportedValueError / error
    //     (concrete type / interface type).  This itab goes in hash bucket 0x111.
    //  2. The plugin adds that same itab again.  That makes a cycle in the itab
    //     chain rooted at hash bucket 0x111.
    //  3. The main binary then asks for the itab for *dynamodbstreamsevt.Event /
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcarchive/testdata/main9.c

    #include "libgo9.h"
    
    void use(int *x) { (*x)++; }
    
    void callGoFWithDeepStack() {
    	int x[10000];
    
    	use(&x[0]);
    	use(&x[9999]);
    
    	GoF();
    
    	use(&x[0]);
    	use(&x[9999]);
    }
    
    int main() {
    	GoF();                  // call GoF without using much stack
    	callGoFWithDeepStack(); // call GoF with a deep stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 460 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForConfiguration/groovy/src/main/java/Main.java

    import org.apache.commons.beanutils.PropertyUtils;
    
    public class Main {
        public static void main(String[] args) throws Exception {
            Object person = new Person();
            PropertyUtils.setSimpleProperty(person, "name", "Bart Simpson");
            PropertyUtils.setSimpleProperty(person, "age", 38);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 313 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/kotlin/src/main/java/Main.java

    import org.apache.commons.beanutils.PropertyUtils;
    
    public class Main {
        public static void main(String[] args) throws Exception {
            Object person = new Person();
            PropertyUtils.setSimpleProperty(person, "name", "Bart Simpson");
            PropertyUtils.setSimpleProperty(person, "age", 38);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 313 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/application/kotlin/src/main/java/org/gradle/sample/Main.java

    package org.gradle.sample;
    
    public class Main {
        public static void main(String[] args) {
            if (System.getProperty("greeting.language").equals("en")) {
                System.out.println("Greetings from the sample application.");
            } else {
                System.out.println("Bonjour, monde!");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
Back to top