Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 400 for stringVar (0.24 sec)

  1. src/internal/types/testdata/fixedbugs/issue51145.go

    	_ [float64 /* ERROR "invalid array length float64" */ ]int
    	_ [f /* ERROR "invalid array length f" */ ]int
    	_ [nil /* ERROR "invalid array length nil" */ ]int
    )
    
    func f()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 447 bytes
    - Viewed (0)
  2. src/internal/coverage/encodecounter/encode.go

    type CoverageDataWriter struct {
    	stab    *stringtab.Writer
    	w       *bufio.Writer
    	csh     coverage.CounterSegmentHeader
    	tmp     []byte
    	cflavor coverage.CounterFlavor
    	segs    uint32
    	debug   bool
    }
    
    func NewCoverageDataWriter(w io.Writer, flav coverage.CounterFlavor) *CoverageDataWriter {
    	r := &CoverageDataWriter{
    		stab: &stringtab.Writer{},
    		w:    bufio.NewWriter(w),
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

    #include <memory>
    #include <optional>
    #include <tuple>
    #include <vector>
    
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringMap.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

      // def-before-use), create a new cluster with that operation and move on.
      llvm::StringMap<SmallVector<Cluster>> all_clusters;
      // Map from operation to the cluster that contains the operation.
      llvm::DenseMap<Operation*, Cluster*> op_to_cluster_map;
    
      llvm::StringMap<Cluster> nearest_clusters;
      for (Operation& op : llvm::make_early_inc_range(block)) {
        if (is_ignored_op(&op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/profile-diff.go

    	manifestsPath string
    }
    
    func addProfileDiffFlags(cmd *cobra.Command, args *profileDiffArgs) {
    	cmd.PersistentFlags().StringVarP(&args.manifestsPath, "charts", "", "", ChartsDeprecatedStr)
    	cmd.PersistentFlags().StringVarP(&args.manifestsPath, "manifests", "d", "", ManifestsFlagHelpStr)
    }
    
    func profileDiffCmd(pfArgs *profileDiffArgs) *cobra.Command {
    	return &cobra.Command{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    		Value:     &IndirChardata{Chardata: stringptr("hi")},
    	},
    	{
    		ExpectXML:     `<IndirChardata><T1></T1><![CDATA[hi]]><T2></T2></IndirChardata>`,
    		Value:         &IndirChardata{Chardata: stringptr("hi")},
    		UnmarshalOnly: true, // marshals without CDATA
    	},
    	{
    		ExpectXML: `<IndirChardata><T1></T1><T2></T2></IndirChardata>`,
    		Value:     &IndirChardata{Chardata: stringptr("")},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    	}
    
    	// If the type implements fmt.Formatter, we have nothing to check.
    	if isFormatter(typ) {
    		return true
    	}
    
    	// If we can use a string, might arg (dynamically) implement the Stringer or Error interface?
    	if m.t&argString != 0 && isConvertibleToString(typ) {
    		return true
    	}
    
    	if typ, _ := aliases.Unalias(typ).(*types.TypeParam); typ != nil {
    		// Avoid infinite recursion through type parameters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

    LogicalResult DecomposeTensorArrayOps(
        Block*, ModuleOp, llvm::SmallDenseMap<Value, TensorArrayStats>*,
        llvm::StringMap<PartitionedCallTensorArrayOpsInfo>*);
    
    LogicalResult HandleWhileOp(TF::WhileOp while_op, ModuleOp module,
                                llvm::SmallDenseMap<Value, TensorArrayStats>* stats,
                                llvm::StringMap<PartitionedCallTensorArrayOpsInfo>*
                                    decomposed_partitioned_call_callees) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    	}
    	for _, rt := range usecases {
    		t.Run(rt.name, func(t *testing.T) {
    
    			var dummy1, dummy2 string
    			cmd := &cobra.Command{
    				Use: "init",
    			}
    
    			cmd.Flags().StringVarP(&dummy1, "flag1", "a", "a", "a")
    			cmd.Flags().StringVarP(&dummy2, "flag2", "b", "b", "b")
    
    			if rt.setAdditionalFlags != nil {
    				rt.runner.SetAdditionalFlags(rt.setAdditionalFlags)
    			}
    
    			rt.runner.BindToCommand(cmd)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  10. src/internal/coverage/decodemeta/decodefile.go

    	"internal/coverage/slicereader"
    	"internal/coverage/stringtab"
    	"io"
    	"os"
    )
    
    // CoverageMetaFileReader provides state and methods for reading
    // a meta-data file from a code coverage run.
    type CoverageMetaFileReader struct {
    	f          *os.File
    	hdr        coverage.MetaFileHeader
    	tmp        []byte
    	pkgOffsets []uint64
    	pkgLengths []uint64
    	strtab     *stringtab.Reader
    	fileRdr    *bufio.Reader
    	fileView   []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 14 22:30:23 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top