Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 98 of 98 for RELEASE (0.22 sec)

  1. src/os/exec/exec_test.go

    			fmt.Fprintln(os.Stderr, err)
    			cmd.Process.Kill()
    			cmd.Wait()
    			os.Exit(1)
    		}
    		fmt.Fprintf(os.Stderr, "%d: started %d: %v\n", pid, cmd.Process.Pid, cmd)
    		go cmd.Wait() // Release resources if cmd happens not to outlive this process.
    	}
    
    	if *exitOnInterrupt {
    		c := make(chan os.Signal, 1)
    		signal.Notify(c, os.Interrupt)
    		go func() {
    			sig := <-c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    	if !opts.NoLock {
    		lock := er.NewNSLock(bucket, object)
    		lkctx, err := lock.GetRLock(ctx, globalOperationTimeout)
    		if err != nil {
    			return nil, err
    		}
    		ctx = lkctx.Context()
    
    		// Release lock when the metadata is verified, and reader
    		// is ready to be read.
    		//
    		// This is possible to be lock free because
    		// - xl.meta for inlined objects has already read the data
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    	go get example.com/mod@none
    
    To upgrade the minimum required Go version to the latest released Go version:
    
    	go get go@latest
    
    To upgrade the Go toolchain to the latest patch release of the current Go toolchain:
    
    	go get toolchain@patch
    
    See https://golang.org/ref/mod#go-get for details.
    
    In earlier versions of Go, 'go get' was used to build and install packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      fbb->Map([&]() {
        fbb->Float("tolerance", tolerance);
        fbb->Bool("log_if_failed", log_if_failed);
      });
      fbb->Finish();
      auto f = std::unique_ptr<flexbuffers::Builder>(fbb.release());
      auto custom_option = f->GetBuffer();
      auto opcode_index =
          GetOpcodeIndex("NumericVerify", tflite::BuiltinOperator_CUSTOM);
    
      return tflite::CreateOperator(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		if err := pcm.Destroy(name); err != nil {
    			return err
    		}
    		klog.V(4).InfoS("Pod termination removed cgroups", "pod", klog.KObj(pod), "podUID", pod.UID)
    	}
    
    	kl.usernsManager.Release(pod.UID)
    
    	// mark the final pod status
    	kl.statusManager.TerminatePod(pod)
    	klog.V(4).InfoS("Pod is terminated and will need no more status updates", "pod", klog.KObj(pod), "podUID", pod.UID)
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/net/http/server.go

    		panic("net/http: Hijack called after ServeHTTP finished")
    	}
    	w.disableWriteContinue()
    	if w.wroteHeader {
    		w.cw.flush()
    	}
    
    	c := w.conn
    	c.mu.Lock()
    	defer c.mu.Unlock()
    
    	// Release the bufioWriter that writes to the chunk writer, it is not
    	// used after a connection has been hijacked.
    	rwc, buf, err = c.hijackLocked()
    	if err == nil {
    		putBufioWriter(w.w)
    		w.w = nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    			jobDeleted: true,
    			pods: []*v1.Pod{
    				buildPod().name("pod1").job(job).Pod,
    				buildPod().name("pod2").job(job).clearOwner().Pod,
    			},
    			wantPods: []string{"pod1"},
    		},
    		"release": {
    			pods: []*v1.Pod{
    				buildPod().name("pod1").job(job).Pod,
    				buildPod().name("pod2").job(job).clearLabels().Pod,
    			},
    			wantPods: []string{"pod1"},
    		},
    	}
    	for name, tc := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_TensorArrayCloseV3Op : TF_Op<"TensorArrayCloseV3", []> {
      let summary = "Delete the TensorArray from its resource container.";
    
      let description = [{
    This enables the user to close and release the resource in the middle
    of a step/run.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, [{The handle to a TensorArray (output of TensorArray or TensorArrayGrad).}], [TF_TensorArrayFree]>:$handle
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top