Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for args_ (0.08 sec)

  1. src/cmd/internal/obj/x86/avx_optabs.go

    	{zcase: Zevex_rm_v_r, zoffset: 0, args: argList{YxmEvex, YxrEvex}},
    	{zcase: Zevex_rm_k_r, zoffset: 3, args: argList{YxmEvex, Yknot0, YxrEvex}},
    	{zcase: Zevex_rm_v_r, zoffset: 0, args: argList{YxmEvex, YyrEvex}},
    	{zcase: Zevex_rm_k_r, zoffset: 3, args: argList{YxmEvex, Yknot0, YyrEvex}},
    	{zcase: Zevex_rm_v_r, zoffset: 0, args: argList{YxmEvex, Yzr}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 15:34:19 UTC 2018
    - 260.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			ssa.OpLeq32F,
    			ssa.OpLeq64F:
    			args[0], args[1] = args[1], args[0]
    		case ssa.OpSub32F,
    			ssa.OpSub64F:
    			args[1] = s.newValue1(s.ssaOp(ir.ONEG, types.Types[callDef.rtype]), args[1].Type, args[1])
    		}
    
    		// runtime functions take uints for floats and returns uints.
    		// Convert to uints so we use the right calling convention.
    		for i, a := range args {
    			if a.Type.IsFloat() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    )
    
    func (cc *http2ClientConn) logf(format string, args ...interface{}) {
    	cc.t.logf(format, args...)
    }
    
    func (cc *http2ClientConn) vlogf(format string, args ...interface{}) {
    	cc.t.vlogf(format, args...)
    }
    
    func (t *http2Transport) vlogf(format string, args ...interface{}) {
    	if http2VerboseLogs {
    		t.logf(format, args...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

    // CHECK: }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Name = in.Name
    	out.Image = in.Image
    	out.Command = *(*[]string)(unsafe.Pointer(&in.Command))
    	out.Args = *(*[]string)(unsafe.Pointer(&in.Args))
    	out.WorkingDir = in.WorkingDir
    	out.Ports = *(*[]core.ContainerPort)(unsafe.Pointer(&in.Ports))
    	out.EnvFrom = *(*[]core.EnvFromSource)(unsafe.Pointer(&in.EnvFrom))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
    	// +optional
    	// +listType=atomic
    	Args []string `json:"args,omitempty" protobuf:"bytes,4,rep,name=args"`
    	// Container's working directory.
    	// If not specified, the container runtime's default will be used, which
    	// might be configured in the container image.
    	// Cannot be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.9.md

    #### **Juju**
    
    *   Added support for SAN entries in the master node certificate. ([#54234](https://github.com/kubernetes/kubernetes/pull/54234),[ @hyperbolic2346](https://github.com/hyperbolic2346))
    *   Add extra-args configs for scheduler and controller-manager to kubernetes-master charm ([#55185](https://github.com/kubernetes/kubernetes/pull/55185),[ @Cynerva](https://github.com/Cynerva))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.16.md

    - Add a helper function to decode scheduler plugin args. ([#80696](https://github.com/kubernetes/kubernetes/pull/80696), [@hex108](https://github.com/hex108))
    - Fix filter plugins are not been called during preemption ([#81876](https://github.com/kubernetes/kubernetes/pull/81876), [@wgliang](https://github.com/wgliang))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    static bool ArgTypesMatchCallee(mlir::Operation *op, OperandRange args,
                                    SymbolRefAttr func) {
      auto module = op->getParentOfType<ModuleOp>();
      auto function =
          dyn_cast_or_null<func::FuncOp>(SymbolTable::lookupSymbolIn(module, func));
      FunctionType function_ty = function.getFunctionType();
    
      for (auto arg_in : llvm::zip(args, function_ty.getInputs())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.23.md

    - The `--leader-elect*` CLI args are now honored in scheduler. ([#105915](https://github.com/kubernetes/kubernetes/pull/105915), [@Huang-Wei](https://github.com/Huang-Wei))
    - The `--leader-elect*` CLI args are now honored in the scheduler. ([#105712](https://github.com/kubernetes/kubernetes/pull/105712), [@Huang-Wei](https://github.com/Huang-Wei))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top