Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Goexit (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            "containerID": {
              "description": "Container's ID in the format 'docker://<container_id>'",
              "type": "string"
            },
            "exitCode": {
              "description": "Exit status from the last termination of the container",
              "format": "int32",
              "type": "integer"
            },
            "finishedAt": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    					{name: "pod1", updateType: kubetypes.SyncPodKill, runningPod: expectedRunningPod},
    					// because this is a runtime pod, we don't have enough info to invoke syncTerminatedPod and so
    					// we exit after the retry succeeds
    				}; !reflect.DeepEqual(expected, actual) {
    					t.Fatalf("unexpected pod sync records: %s", cmp.Diff(expected, actual, cmp.AllowUnexported(syncPodRecord{})))
    				}
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		}
    	}
    
    	ctx, cancel := context.WithCancel(testContext)
    
    	lock := sync.Mutex{}
    	called := false
    
    	// We rely on the fact that there is exactly one worker, so it should exit after
    	// getting context canceled error on the first Delete call to etcd.
    	// With multiple workers, each of them would be calling Delete once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. 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)
  5. src/net/http/transport_test.go

    	run(t, testTransportMaxPerHostIdleConns, []testMode{http1Mode})
    }
    func testTransportMaxPerHostIdleConns(t *testing.T, mode testMode) {
    	stop := make(chan struct{}) // stop marks the exit of main Test goroutine
    	defer close(stop)
    
    	resch := make(chan string)
    	gotReq := make(chan bool)
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		gotReq <- true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
      if (node.IsEnter()) {
        return builder_.create<mlir::tf_executor::EnterOp>(loc, types, operands,
                                                           result.attributes);
      }
      if (node.IsExit()) {
        return builder_.create<mlir::tf_executor::ExitOp>(loc, types, operands,
                                                          result.attributes);
      }
      if (node.IsControlTrigger()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top