Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 158 for args_ (0.04 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

                        appendNextIndented("receiver = ")
                        recurseDeeper(it)
                        appendLine()
                    }
                    if (current.args.isNotEmpty()) {
                        appendNextIndented("args = [\n")
                        current.args.forEach {
                            appendNextIndented("    ")
                            recurse(it, depth + 2)
                            appendLine()
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. internal/logger/logger.go

    			Source:    trace,
    			Variables: tags,
    		}
    	} else {
    		entry.Message = message
    	}
    
    	if anonFlag {
    		entry.API.Args.Bucket = HashString(entry.API.Args.Bucket)
    		entry.API.Args.Object = HashString(entry.API.Args.Object)
    		entry.RemoteHost = HashString(entry.RemoteHost)
    		if entry.Trace != nil {
    			entry.Trace.Variables = make(map[string]interface{})
    		}
    	}
    
    	return entry
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/node.go

    	cmd := &cobra.Command{
    		Use:   "node",
    		Short: "Upgrade commands for a node in the cluster",
    		RunE: func(cmd *cobra.Command, args []string) error {
    			if err := validation.ValidateMixedArguments(cmd.Flags()); err != nil {
    				return err
    			}
    
    			return nodeRunner.Run(args)
    		},
    		Args: cobra.NoArgs,
    	}
    
    	// adds flags to the node command
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/kernels/xla_ops.cc

                    std::move(event));
    
            Rendezvous::Args args;
            // Rendezvous::Args owns the device context pointer.
            args.device_context = new XlaHostRecvDeviceContext(
                stream, device_memory_base, shape, done_event);
    
            Tensor host_tensor;
            TF_RETURN_IF_ERROR(
                ctx->rendezvous()->Send(parsed_key, args, host_tensor, false));
    
            return std::move(done_event);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

                                         const TypeRange output_types,
                                         const ValueRange args) {
      TF::PartitionedCallOp call_op = builder.create<TF::PartitionedCallOp>(
          location, output_types, args,
          FlatSymbolRefAttr::get(builder.getStringAttr(func_name)),
          /*config=*/"", /*config_proto=*/"", /*executor_type=*/"");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/server.go

    		RunE: func(cmd *cobra.Command, args []string) error {
    			return runCommand(cmd, opts, registryOptions...)
    		},
    		Args: func(cmd *cobra.Command, args []string) error {
    			for _, arg := range args {
    				if len(arg) > 0 {
    					return fmt.Errorf("%q does not take any arguments, got %q", cmd.CommandPath(), args)
    				}
    			}
    			return nil
    		},
    	}
    
    	nfs := opts.Flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/app/cmd.go

    	if err := log.Configure(loggingOptions); err != nil {
    		return err
    	}
    	return nil
    }
    
    func initProxy(args []string) error {
    	proxyArgs.Type = model.SidecarProxy
    	if len(args) > 0 {
    		proxyArgs.Type = model.NodeType(args[0])
    		if !model.IsApplicationNodeType(proxyArgs.Type) {
    			return fmt.Errorf("Invalid proxy Type: " + string(proxyArgs.Type))
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/config.go

    		`), action, action, configutil.PlaceholderToken.Token.String()),
    		RunE: func(cmd *cobra.Command, args []string) error {
    			groups, err := mapLegacyKindsToGroups(kinds)
    			if err != nil {
    				return err
    			}
    			return runConfigPrintActionDefaults(out, groups, configBytesProc)
    		},
    		Args: cobra.NoArgs,
    	}
    	if action == "init" {
    		cmd.Flags().StringSliceVar(&kinds, "component-configs", kinds,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

          compilation_result, custom_legalization_passes, module_name,
          lower_to_xla_hlo);
    }
    
    // Rewrites the given module with specified args. For each of the constant args,
    // it gets inlined in the "main' function and the corresponding argument is
    // removed from the signature. For resource args, their subtypes are populated.
    // Returns the original indices for the other arguments on success.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/pgen.go

    		if large.callee != 0 {
    			base.ErrorfAt(large.pos, 0, "stack frame too large (>1GB): %d MB locals + %d MB args + %d MB callee", large.locals>>20, large.args>>20, large.callee>>20)
    		} else {
    			base.ErrorfAt(large.pos, 0, "stack frame too large (>1GB): %d MB locals + %d MB args", large.locals>>20, large.args>>20)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top