Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 203 for stringTab (0.51 sec)

  1. src/runtime/trace.go

    		trace.markWorkerLabels[gen%2][i] = traceArg(trace.stringTab[gen%2].put(gen, label))
    	}
    	for i, str := range traceBlockReasonStrings[:] {
    		trace.goBlockReasons[gen%2][i] = traceArg(trace.stringTab[gen%2].put(gen, str))
    	}
    	for i, str := range traceGoStopReasonStrings[:] {
    		trace.goStopReasons[gen%2][i] = traceArg(trace.stringTab[gen%2].put(gen, str))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. src/go/build/deps_test.go

    	< internal/coverage/cmerge,
    	  internal/coverage/pods,
    	  internal/coverage/slicereader,
    	  internal/coverage/slicewriter;
    
    	internal/coverage/slicereader, internal/coverage/slicewriter
    	< internal/coverage/stringtab
    	< internal/coverage/decodecounter, internal/coverage/decodemeta,
    	  internal/coverage/encodecounter, internal/coverage/encodemeta;
    
    	internal/coverage/cmerge
    	< internal/coverage/cformat;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/cmd/internal/goobj/objfile.go

    type Writer struct {
    	wr        *bio.Writer
    	stringMap map[string]uint32
    	off       uint32 // running offset
    
    	b [8]byte // scratch space for writing bytes
    }
    
    func NewWriter(wr *bio.Writer) *Writer {
    	return &Writer{wr: wr, stringMap: make(map[string]uint32)}
    }
    
    func (w *Writer) AddString(s string) {
    	if _, ok := w.stringMap[s]; ok {
    		return
    	}
    	w.stringMap[s] = w.off
    	w.RawString(s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-discovery/app/cmd.go

    		"Discovery service HTTP address")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.HTTPSAddr, "httpsAddr", ":15017",
    		"Injection and validation service HTTPS address")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.GRPCAddr, "grpcAddr", ":15010",
    		"Discovery service gRPC address")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.SecureGRPCAddr, "secureGRPCAddr", ":15012",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.h

    #include "llvm/ADT/StringMap.h"
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h"
    
    namespace mlir::quant {
    
    LogicalResult FillAttributesForUniformQuantizedDotOp(
        PatternRewriter& rewriter, Operation* op,
        llvm::StringMap<Attribute>& identifier_to_attr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

    }
    
    Attribute GetLhsDilationValue(PatternRewriter& rewriter,
                                  llvm::StringMap<Attribute>& identifier_to_attr) {
      return rewriter.getI64ArrayAttr({1, 1});
    }
    
    Attribute GetRhsDilationValue(PatternRewriter& rewriter,
                                  llvm::StringMap<Attribute>& identifier_to_attr) {
      ArrayAttr dilations =
          mlir::dyn_cast<ArrayAttr>(identifier_to_attr["dilations"]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/options/generic.go

    func AddKubeConfigDirFlag(fs *pflag.FlagSet, kubeConfigDir *string) {
    	fs.StringVar(kubeConfigDir, KubeconfigDir, *kubeConfigDir, "The path where to save the kubeconfig file.")
    }
    
    // AddConfigFlag adds the --config flag to the given flagset
    func AddConfigFlag(fs *pflag.FlagSet, cfgPath *string) {
    	fs.StringVar(cfgPath, CfgPath, *cfgPath, "Path to a kubeadm configuration file.")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. pkg/test/echo/cmd/client/main.go

    	rootCmd.PersistentFlags().StringVar(&uds, "uds", "",
    		"Specify the Unix Domain Socket to connect to")
    	rootCmd.PersistentFlags().StringSliceVarP(&headers, "header", "H", headers,
    		"A list of http headers (use Host for authority) - 'name: value', following curl syntax")
    	rootCmd.PersistentFlags().StringVar(&caFile, "ca", "", "CA root cert file")
    	rootCmd.PersistentFlags().StringVar(&msg, "msg", "HelloWorld",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. test/asmhdr.dir/main.go

    func main() {
    	if smallInt != smallIntAsm {
    		println("smallInt", smallInt, "!=", smallIntAsm)
    	}
    	if bigInt != bigIntAsm {
    		println("bigInt", uint64(bigInt), "!=", bigIntAsm)
    	}
    	if stringVal != string(stringAsm[:]) {
    		println("stringVal", stringVal, "!=", string(stringAsm[:]))
    	}
    	if longStringVal != string(longStringAsm[:]) {
    		println("longStringVal", longStringVal, "!=", string(longStringAsm[:]))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 10 21:27:19 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/csrsigningcontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.StringVar(&o.ClusterSigningCertFile, "cluster-signing-cert-file", o.ClusterSigningCertFile, "Filename containing a PEM-encoded X509 CA certificate used to issue cluster-scoped certificates.  If specified, no more specific --cluster-signing-* flag may be specified.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 06:47:49 UTC 2022
    - 7.5K bytes
    - Viewed (0)
Back to top