Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for exit2 (0.08 sec)

  1. src/cmd/go/internal/modget/get.go

    			sw.Switch(ctx)
    			// If NeedSwitch is true and Switch returns, Switch has failed to locate a newer toolchain.
    			// It printed the errors along with one more about not finding a good toolchain.
    			base.Exit()
    		}
    
    		for _, q := range queries {
    			unresolved := q.candidates[:0]
    
    			for _, cs := range q.candidates {
    				if cs.err != nil {
    					reportError(q, cs.err)
    					resolved++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. configure.py

      bazel_executable = which('bazel')
      if bazel_executable is None:
        bazel_executable = which('bazelisk')
        if bazel_executable is None:
          print('Cannot find bazel. Please install bazel/bazelisk.')
          sys.exit(1)
    
      stderr = open(os.devnull, 'wb')
      curr_version = run_shell([bazel_executable, '--version'],
                               allow_non_zero=True,
                               stderr=stderr)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            configuration.exclude([group: "value2"])
            configuration.artifacts.add(artifact("name1", "ext1", "type1", "classifier1"))
            configuration.artifacts.add(artifact("name2", "ext2", "type2", "classifier2"))
    
            if (configuration.roleAtCreation.declarable) {
                configuration.dependencies.add(dependency("group1", "name1", "version1"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.3.md

    * Make addon-manager cross-platform and use it with hyperkube ([#25631](https://github.com/kubernetes/kubernetes/pull/25631), [@luxas](https://github.com/luxas))
    * kubelet: Optionally, have kubelet exit if lock file contention is observed, using --exit-on-lock-contention flag ([#25596](https://github.com/kubernetes/kubernetes/pull/25596), [@derekparker](https://github.com/derekparker))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  5. cmd/peer-rest-server.go

    	if traceOpts.TraceTypes().Contains(madmin.TraceBootstrap) {
    		go globalBootstrapTracer.Publish(ctx, globalTrace)
    	}
    
    	// Wait for remote to cancel and SubscribeJSON to exit.
    	wg.Wait()
    	return nil
    }
    
    func (s *peerRESTServer) BackgroundHealStatusHandler(_ *grid.MSS) (*grid.JSON[madmin.BgHealState], *grid.RemoteErr) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

          Graph* graph_out);
    
      // Makes a copy of graph containing only nodes that are ancestors of at least
      // one node in send_from_host_nodes and store it in pruned_graph. On exit
      // nodes_images contains a mapping from nodes in graph to nodes in
      // pruned_graph. All functions in the copied graph are inlined.
      Status MakePrunedGraphCopyAndInline(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    			}
    			if b, ok := req.Body.(*readTrackingBody); ok && !b.didClose {
    				// Issue 49621: Close the request body if pconn.roundTrip
    				// didn't do so already. This can happen if the pconn
    				// write loop exits without reading the write request.
    				req.closeBody()
    			}
    			return nil, err
    		}
    		testHookRoundTripRetried()
    
    		// Rewind the body if we're able to.
    		req, err = rewindBody(req)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/regexp/testdata/testregex.c

    		break;
    	}
    	printf("%s\n", msg);
    }
    
    static void
    bad(char* comment, char* re, char* s, int len, unsigned long test)
    {
    	printf("bad test case ");
    	report(comment, NiL, re, s, len, NiL, 0, test);
    	exit(1);
    }
    
    static int
    escape(char* s)
    {
    	char*	b;
    	char*	t;
    	char*	q;
    	char*	e;
    	int	c;
    
    	for (b = t = s; *t = *s; s++, t++)
    		if (*s == '\\')
    			switch (*++s)
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  9. src/html/template/escape_test.go

    		{
    			`<script>document.write("<p>foo<\/script>");`,
    			context{state: stateJS, element: elementScript},
    		},
    		{
    			// <script and </script tags are escaped, so </script> should not
    			// cause us to exit the JS state.
    			`<script>document.write("<script>alert(1)</script>");`,
    			context{state: stateJS, element: elementScript},
    		},
    		{
    			`<script>document.write("<script>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            this.messageBuilderFactory = new JLineMessageBuilderFactory();
        }
    
        public static void main(String[] args) {
            int result = main(args, null);
    
            System.exit(result);
        }
    
        public static int main(String[] args, ClassWorld classWorld) {
            MavenCli cli = new MavenCli();
    
            MessageUtils.systemInstall();
            MessageUtils.registerShutdownHook();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top