Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for execve (0.13 sec)

  1. cmd/object-handlers.go

    	// - the object is encrypted using SSE-C and two different SSE-C keys are present
    	// - the object is encrypted using SSE-S3 and the SSE-S3 header is present
    	// - the object storage class is not changing
    	// then execute a key rotation.
    	if cpSrcDstSame && (sseCopyC && sseC) && !chStorageClass {
    		oldKey, err = ParseSSECopyCustomerRequest(r.Header, srcInfo.UserDefined)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      }
    }
    
    void WhileRegionOp::getRegionInvocationBounds(
        ArrayRef<Attribute> operands,
        SmallVectorImpl<InvocationBounds> &invocationBounds) {
      // We execute cond at least once, and body any number of times.
      invocationBounds.emplace_back(InvocationBounds(1, std::nullopt));
      invocationBounds.emplace_back(InvocationBounds::getUnknown());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	cgroupRoot string
    
    	// Mounter to use for volumes.
    	mounter mount.Interface
    
    	// hostutil to interact with filesystems
    	hostutil hostutil.HostUtils
    
    	// subpather to execute subpath actions
    	subpather subpath.Interface
    
    	// Manager of non-Runtime containers.
    	containerManager cm.ContainerManager
    
    	// Maximum Number of Pods which can be run by this Kubelet
    	maxPods int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    		}
    
    		// Blocking send.
    		if x.Maybe() {
    			ch, val := newop(len(cases), 0)
    			cases = append(cases, SelectCase{
    				Dir:  SelectSend,
    				Chan: ch,
    				Send: val,
    			})
    			// Let it execute?
    			if x.Maybe() {
    				f := func() { ch.Recv() }
    				info = append(info, caseInfo{desc: "blocking send", helper: f})
    			} else {
    				info = append(info, caseInfo{desc: "blocking send"})
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/reflect/value.go

    // returning from reflectcall and actually using them.
    //
    // If copying result bytes back from the stack, the caller must pass the
    // argument frame type as stackArgsType, so that call can execute appropriate
    // write barriers during the copy.
    //
    // Arguments passed through to call do not escape. The type is used only in a
    // very limited callee of call, the stackArgs are copied, and regArgs is only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          meta_graph = saved_model_loader.load(sess, tags, export_dir=model_dir)
          signature_def = meta_graph.signature_def[signature_key]
    
          # DumpTensorOp only works in graph mode.
          # Execute the model using session to run DumpTensorOp.
          output_tensor_names = [
              output_tensor_info.name
              for output_tensor_info in signature_def.outputs.values()
          ]
    
          output_values = []
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/webcomponents.min.js

    onHost(e),e=this.convertColonHostContext(e),e=this.convertShadowDOMSelectors(e),t){var e,r=this;a(e,function(n){e=r.scopeRules(n,t)})}return e=e+"\n"+n,e.trim()},extractUnscopedRulesFromCssText:function(e){for(var t,n="";t=w.exec(e);)n+=t[1].slice(0,-1)+"\n\n";for(;t=v.exec(e);)n+=t[0].replace(t[2],"").replace(t[1],t[3])+"\n\n";return n},convertColonHost:function(e){return this.convertColonRule(e,E,this.colonHostPartReplacer)},convertColonHostContext:function(e){return this.convertColonRule(e,_,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = [{Poly call}];
    
      let description = [{
        Have multiple function bodies for the same computation. This allows a
        program compiler/interpreter to choose one of the available options to
        execute the program based on which one is most suitable for the target
        backend.
    
        input:  A list of input tensors whose types are T.
        output: A list of output tensors whose types are T.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    <h3 id="Switch_statements">Switch statements</h3>
    
    <p>
    "Switch" statements provide multi-way execution.
    An expression or type is compared to the "cases"
    inside the "switch" to determine which branch
    to execute.
    </p>
    
    <pre class="ebnf">
    SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
    </pre>
    
    <p>
    There are two forms: expression switches and type switches.
    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