Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for execve (0.16 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    }
    
    // Replace formats the contents of v into the provided template.
    func replace(tmpl string, v interface{}) string {
    	t := template.Must(template.New("test").Parse(tmpl))
    	buf := bytes.NewBuffer(nil)
    	t.Execute(buf, &v)
    	ret := buf.String()
    	klog.V(4).Infof("Replaced: %v into: %v", tmpl, ret)
    	return ret
    }
    
    // newClaimServer returns a new test HTTPS server, which is rigged to return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    			kubeClient.ReactionChain = fake.NewSimpleClientset(&v1.NodeList{Items: []v1.Node{*tc.existingNode}}).ReactionChain
    			kubelet.nodeLister = delegatingNodeLister{client: kubeClient}
    
    			// Execute
    			assert.NoError(t, kubelet.updateNodeStatus(ctx))
    
    			// Validate
    			actions := kubeClient.Actions()
    			if tc.expectedNode != nil {
    				assert.Len(t, actions, 2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		return 0, 0, err
    	}
    
    	execName := "getsubids"
    	cmd, err := exec.LookPath(execName)
    	if err != nil {
    		if os.IsNotExist(err) {
    			klog.V(2).InfoS("Could not find executable, default mappings will be used for the user namespaces", "executable", execName, "err", err)
    			return defaultFirstID, defaultLen, nil
    		}
    		return 0, 0, err
    	}
    	outUids, err := exec.Command(cmd, kubeletUser).Output()
    	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)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "command": {
    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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top