Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 147 for exit_node (0.15 sec)

  1. misc/ios/go_ios_exec.go

    	if len(os.Args) < 2 {
    		log.Fatal("usage: go_ios_exec a.out")
    	}
    
    	// For compatibility with the old builders, use a fallback bundle ID
    	bundleID = "golang.gotest"
    
    	exitCode, err := runMain()
    	if err != nil {
    		log.Fatalf("%v\n", err)
    	}
    	os.Exit(exitCode)
    }
    
    func runMain() (int, error) {
    	var err error
    	tmpdir, err = os.MkdirTemp("", "go_ios_exec_")
    	if err != nil {
    		return 1, err
    	}
    	if !debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    final Node childNode = nodeList.item(i);
                    parseTextContent(childNode, buf);
                }
            } else if (node.getNodeType() == Node.TEXT_NODE) {
                final String value = node.getTextContent();
                if (value != null) {
                    final String content = value.trim();
                    if (content.length() > 0) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  3. pkg/kubelet/container/helpers.go

    		klog.V(4).InfoS("Already ran container, do nothing", "pod", klog.KObj(pod), "containerName", container.Name)
    		return false
    	}
    	if pod.Spec.RestartPolicy == v1.RestartPolicyOnFailure {
    		// Check the exit code.
    		if status.ExitCode == 0 {
    			klog.V(4).InfoS("Already successfully ran container, do nothing", "pod", klog.KObj(pod), "containerName", container.Name)
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/test.go

    	})
    {{end}}
    	m := testing.MainStart(testdeps.TestDeps{}, tests, benchmarks, fuzzTargets, examples)
    {{with .TestMain}}
    	{{.Package}}.{{.Name}}(m)
    	os.Exit(int(reflect.ValueOf(m).Elem().FieldByName("exitCode").Int()))
    {{else}}
    	os.Exit(m.Run())
    {{end}}
    }
    
    `)
    
    var testmainTmplNewCoverage = lazytemplate.New("main", `
    // Code generated by 'go test'. DO NOT EDIT.
    
    package main
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		cStatus.StartedAt = time.Unix(0, status.StartedAt)
    	}
    	if status.State == runtimeapi.ContainerState_CONTAINER_EXITED {
    		cStatus.Reason = status.Reason
    		cStatus.Message = status.Message
    		cStatus.ExitCode = int(status.ExitCode)
    		cStatus.FinishedAt = time.Unix(0, status.FinishedAt)
    	}
    	return cStatus
    }
    
    // executePreStopHook runs the pre-stop lifecycle hooks if applicable and returns the duration it takes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. pkg/test/framework/suite.go

    		errLevel = s.mRun(ctx)
    		if errLevel == 0 {
    			scopes.Framework.Infof("=== DONE: Test Run: '%s' ===", ctx.Settings().TestID)
    			break
    		}
    		scopes.Framework.Infof("=== FAILED: Test Run: '%s' (exitCode: %v) ===",
    			ctx.Settings().TestID, errLevel)
    		if attempt <= ctx.settings.Retries {
    			scopes.Framework.Warnf("=== RETRY: Test Run: '%s' ===", ctx.Settings().TestID)
    		}
    	}
    	s.runTeardownFns(ctx)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    }
    
    func TerminateJobObject(job Handle, exitCode uint32) (err error) {
    	r1, _, e1 := syscall.Syscall(procTerminateJobObject.Addr(), 2, uintptr(job), uintptr(exitCode), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func TerminateProcess(handle Handle, exitcode uint32) (err error) {
    	r1, _, e1 := syscall.Syscall(procTerminateProcess.Addr(), 2, uintptr(handle), uintptr(exitcode), 0)
    	if r1 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    classworlds.conf; protected static final String UBERJAR_CONF_DIR = WORLDS-INF/conf/; protected ClassLoader systemClassLoader; protected String mainClassName; protected String mainRealmName; protected org.codehaus.plexus.classworlds.ClassWorld world; private int exitCode; public void Launcher(); public void setSystemClassLoader(ClassLoader); public ClassLoader getSystemClassLoader(); public int getExitCode(); public void setAppMain(String, String); public String getMainRealmName(); public String getMainClassName();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 41.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    classworlds.conf; protected static final String UBERJAR_CONF_DIR = WORLDS-INF/conf/; protected ClassLoader systemClassLoader; protected String mainClassName; protected String mainRealmName; protected org.codehaus.plexus.classworlds.ClassWorld world; private int exitCode; public void Launcher(); public void setSystemClassLoader(ClassLoader); public ClassLoader getSystemClassLoader(); public int getExitCode(); public void setAppMain(String, String); public String getMainRealmName(); public String getMainClassName();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 41.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    classworlds.conf; protected static final String UBERJAR_CONF_DIR = WORLDS-INF/conf/; protected ClassLoader systemClassLoader; protected String mainClassName; protected String mainRealmName; protected org.codehaus.plexus.classworlds.ClassWorld world; private int exitCode; public void Launcher(); public void setSystemClassLoader(ClassLoader); public ClassLoader getSystemClassLoader(); public int getExitCode(); public void setAppMain(String, String); public String getMainRealmName(); public String getMainClassName();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 41.6K bytes
    - Viewed (0)
Back to top