Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Goexit (0.21 sec)

  1. src/runtime/proc.go

    	schedule()
    }
    
    // Finishes execution of the current goroutine.
    func goexit1() {
    	if raceenabled {
    		racegoend()
    	}
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.GoEnd()
    		traceRelease(trace)
    	}
    	mcall(goexit0)
    }
    
    // goexit continuation on g0.
    func goexit0(gp *g) {
    	gdestroy(gp)
    	schedule()
    }
    
    func gdestroy(gp *g) {
    	mp := getg().m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    						Message: "Container x for pod default/mypod-0 failed with exit code 3 matching FailJob rule at index 0",
    					},
    					{
    						Type:    batch.JobFailed,
    						Status:  v1.ConditionTrue,
    						Reason:  batch.JobReasonPodFailurePolicy,
    						Message: "Container x for pod default/mypod-0 failed with exit code 3 matching FailJob rule at index 0",
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    		// Update actual state of world
    		markVolMountedErr := actualStateOfWorld.MarkVolumeAsUnmounted(
    			volumeToUnmount.PodName, volumeToUnmount.VolumeName)
    		if markVolMountedErr != nil {
    			// On failure, just log and exit
    			klog.Errorf(volumeToUnmount.GenerateErrorDetailed("UnmountVolume.MarkVolumeAsUnmounted failed", markVolMountedErr).Error())
    		}
    
    		return volumetypes.NewOperationContext(nil, nil, migrated)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	//
    	// Note that there is a race between Kubelet seeing the pod and kubelet seeing the service.
    	// To avoid this users can: (1) wait between starting a service and starting; or (2) detect
    	// missing service env var and exit and be restarted; or (3) use DNS instead of env vars
    	// and keep trying to resolve the DNS name of the service (recommended).
    	serviceEnv, err := kl.getServiceEnvVarMap(pod.Namespace, *pod.Spec.EnableServiceLinks)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		}
    		ln, err := net.Listen("tcp", "localhost:"+port)
    		if err != nil {
    			fmt.Fprintln(os.Stderr, err.Error())
    			os.Exit(1)
    		}
    		fmt.Println(ln.Addr().String())
    		HandleFunc("/", func(w ResponseWriter, r *Request) {
    			r.ParseForm()
    			if r.Form.Get("stop") != "" {
    				os.Exit(0)
    			}
    			w.Header().Set("Content-Type", "text/html; charset=utf-8")
    			w.Write(data)
    		})
    		var srv Server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

          %enter:2 = "tf_executor.Enter"(%island#0) { frame_name = "frame"} : (tensor<?x?x?xf32>) -> (tensor<?x?x?xf32>, !tf_executor.control)
          %exit:2 = "tf_executor.Exit"(%island#0) : (tensor<?x?x?xf32>) -> (tensor<?x?x?xf32>, !tf_executor.control)
          %loop_cond:2 = "tf_executor.LoopCond" (%island#1) : (tensor<*xi1>) -> (tensor<*xi1>, !tf_executor.control)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        int64_t max_iterations) {
      bool any_failure = false;
      bool any_nonconvergence = false;
      // If shape propagation fails for one function, return failure, but do not
      // early exit and attempt to propagate shapes for all provided functions to
      // have a best-effort propagation.
      for (func::FuncOp func : functions) {
        DCOMMENT("Propating shape to " << func.getName());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %0 = "tf.Cast"(%arg0) {Truncate = false} : (tensor<8x16x32x64xf32>) -> tensor<8x16x32x64xf32>
      cf.br ^bb1
    ^bb1:
      %1 = "tf.Cast"(%0) {Truncate = true} : (tensor<8x16x32x64xf32>) -> tensor<8x16x32x64xf32>
      cf.br ^exit
    ^exit:
      func.return %1: tensor<8x16x32x64xf32>
    
      // CHECK: return %arg0
    }
    
    // CHECK-LABEL: testConcatCanonicalization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top