Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for exit2 (0.06 sec)

  1. pkg/kubelet/kubelet_test.go

    				}},
    				"failed": {Terminated: &v1.ContainerStateTerminated{
    					ExitCode:    1,
    					ContainerID: emptyContainerID,
    				}},
    			},
    			// If the init container is terminated with exit code 0, it won't be restarted even when the
    			// restart policy is RestartAlways.
    			expectedInitState: map[string]v1.ContainerState{
    				"succeed": {Terminated: &v1.ContainerStateTerminated{
    					ExitCode:    0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    					}
    				}
    			}
    			s.RUnlock()
    
    			resyncTimer.Reset(resyncTimeInterval)
    		case <-ctx.Done():
    			// server could be restarting - need
    			// to exit immediately
    			return
    		}
    	}
    }
    
    const (
    	resyncWorkerCnt        = 10 // limit of number of bucket resyncs is progress at any given time
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	// maybeOpenNewConnections sends on the chan (one send per needed connection)
    	// It is closed during db.Close(). The close tells the connectionOpener
    	// goroutine to exit.
    	openerCh          chan struct{}
    	closed            bool
    	dep               map[finalCloser]depSet
    	lastPut           map[*driverConn]string // stacktrace of last conn's put; debug only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. okhttp-android/src/main/baseline-prof.txt

    HSPLokio/AsyncTimeout$source$1;->close()V
    HSPLokio/AsyncTimeout$source$1;->read(Lokio/Buffer;J)J
    HSPLokio/AsyncTimeout;-><clinit>()V
    HSPLokio/AsyncTimeout;-><init>()V
    HSPLokio/AsyncTimeout;->enter()V
    HSPLokio/AsyncTimeout;->exit()Z
    HSPLokio/Buffer;-><init>()V
    HSPLokio/Buffer;->exhausted()Z
    HSPLokio/Buffer;->getByte(J)B
    HSPLokio/Buffer;->indexOfElement(Lokio/ByteString;)J
    HSPLokio/Buffer;->rangeEquals(JLokio/ByteString;)Z
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/callback.go

    	defer func() {
    		s := recover()
    		if s == nil {
    			t.Fatal("did not panic")
    		}
    		if s.(string) != "callback panic" {
    			t.Fatal("wrong panic:", s)
    		}
    		if lockedOSThread() {
    			t.Fatal("locked OS thread on exit from TestCallbackPanic")
    		}
    	}()
    	nestedCall(func() { panic("callback panic") })
    	panic("nestedCall returned")
    }
    
    func testCallbackPanicLoop(t *testing.T) {
    	// Make sure we don't blow out m->g0 stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        return failure();
      }
    
      int64_t inputs_rank = -1;
      for (Value value : values) {
        if (auto ty = value.getType().dyn_cast<RankedTensorType>()) {
          // Exit early as input types are verified to be compatible so all ranked
          // tensors have the same rank.
          inputs_rank = ty.getRank();
          break;
        }
      }
      if (inputs_rank == -1) return success();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	// dependency order traversal.
    	all := actionList(root)
    	for i, a := range all {
    		a.priority = i
    	}
    
    	// Write action graph, without timing information, in case we fail and exit early.
    	writeActionGraph := func() {
    		if file := cfg.DebugActiongraph; file != "" {
    			if strings.HasSuffix(file, ".go") {
    				// Do not overwrite Go source code in:
    				//	go build -debug-actiongraph x.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

        * Changelog (vs 55-8872-18-0)
                * Updated kubernetes to v1.4.5
                * Fixed a bug in e2fsprogs that caused mke2fs to take a very long time. Upstream fix: http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/?h=next&id=d33e690fe7a6cbeb51349d9f2c7fb16a6ebec9c2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    			p.Internal.PGOProfile = file
    			updateBuildInfo(p, file)
    		}
    	}
    }
    
    // CheckPackageErrors prints errors encountered loading pkgs and their
    // dependencies, then exits with a non-zero status if any errors were found.
    func CheckPackageErrors(pkgs []*Package) {
    	var anyIncomplete bool
    	for _, pkg := range pkgs {
    		if pkg.Incomplete {
    			anyIncomplete = true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    <pre>
    func main() { … }
    </pre>
    
    <p>
    Program execution begins by initializing the main package and then
    invoking the function <code>main</code>.
    When that function invocation returns, the program exits.
    It does not wait for other (non-<code>main</code>) goroutines to complete.
    </p>
    
    <h2 id="Errors">Errors</h2>
    
    <p>
    The predeclared type <code>error</code> is defined as
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top