Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for exit2 (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/link/internal/ld/data.go

    	strnames []string
    )
    
    func addstrdata1(ctxt *Link, arg string) {
    	eq := strings.Index(arg, "=")
    	dot := strings.LastIndex(arg[:eq+1], ".")
    	if eq < 0 || dot < 0 {
    		Exitf("-X flag requires argument of the form importpath.name=value")
    	}
    	pkg := arg[:dot]
    	if ctxt.BuildMode == BuildModePlugin && pkg == "main" {
    		pkg = *flagPluginPath
    	}
    	pkg = objabi.PathToPrefix(pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. 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)
  8. src/net/http/transport_test.go

    					},
    				}, nil
    			}
    		},
    	).ts
    	// Set a short delay in RoundTrip to give the persistConn time to notice
    	// the connection is broken. We want to exercise the path where writeLoop exits
    	// before it reads the request to send. If this delay is too short, we may instead
    	// exercise the path where writeLoop accepts the request and then fails to write it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top