Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 633 for isIdent (0.84 sec)

  1. tensorflow/compiler/mlir/lite/quantization/tools/tflite_op_coverage_spec_getters_gen.cc

        if (kernel_support) {
          os.indent(6) << "\"" << op_name << "\",\n";
        } else {
          weight_only.push_back(op_name.str());
        }
      }
    
      os.indent(4) << "});";
      os.indent(2) << "return *result;\n";
      os.indent(0) << "}\n";
    
      os.indent(0)
          << "const std::set<std::string> &ExportDynamicRangeWeightOnlySpec() {\n";
      os.indent(2) << "static const std::set<std::string> * result =\n";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. src/encoding/gob/debug.go

    func (deb *debugger) printWireType(indent tab, wire *wireType) {
    	fmt.Fprintf(os.Stderr, "%stype definition {\n", indent)
    	indent++
    	switch {
    	case wire.ArrayT != nil:
    		deb.printCommonType(indent, "array", &wire.ArrayT.CommonType)
    		fmt.Fprintf(os.Stderr, "%slen %d\n", indent+1, wire.ArrayT.Len)
    		fmt.Fprintf(os.Stderr, "%selemid %d\n", indent+1, wire.ArrayT.Elem)
    	case wire.MapT != nil:
    		deb.printCommonType(indent, "map", &wire.MapT.CommonType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata_test.go

    			dumpNL(out, indent)
    			dumpTo(out, indent, def)
    		}
    
    	case *LinkDef:
    		fmt.Fprintf(out, "LinkDef Used:%v Text:%q URL:%s", x.Used, x.Text, x.URL)
    
    	case []Block:
    		for _, blk := range x {
    			dumpNL(out, indent)
    			dumpTo(out, indent, blk)
    		}
    
    	case *Heading:
    		fmt.Fprintf(out, "Heading")
    		dumpTo(out, indent+1, x.Text)
    
    	case *List:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stmt.go

    	// (and use 0 indentation at function start)
    	defer func(env environment, indent int) {
    		check.environment = env
    		check.indent = indent
    	}(check.environment, check.indent)
    	check.environment = environment{
    		decl:  decl,
    		scope: sig.scope,
    		iota:  iota,
    		sig:   sig,
    	}
    	check.indent = 0
    
    	check.stmtList(0, body.List)
    
    	if check.hasLabel && !check.conf.IgnoreBranchErrors {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/encoding/json/scanner_test.go

    				t.Errorf("%s: Compact:\n\tgot:  %s\n\twant: %s", tt.Where, indentNewlines(got), indentNewlines(tt.indent))
    			}
    
    			buf.Reset()
    			if err := Indent(&buf, []byte(tt.compact), "", "\t"); err != nil {
    				t.Errorf("%s: Indent error: %v", tt.Where, err)
    			} else if got := buf.String(); got != tt.indent {
    				t.Errorf("%s: Compact:\n\tgot:  %s\n\twant: %s", tt.Where, indentNewlines(got), indentNewlines(tt.indent))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

          {{- include "podAntiAffinity" $gateway | indent 6 }}
    {{- if $gateway.tolerations }}
          tolerations:
    {{ toYaml $gateway.tolerations | indent 6 }}
    {{- else if .Values.global.defaultTolerations }}
          tolerations:
    {{ toYaml .Values.global.defaultTolerations | indent 6 }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

          {{- include "podAntiAffinity" $gateway | indent 6 }}
    {{- if $gateway.tolerations }}
          tolerations:
    {{ toYaml $gateway.tolerations | indent 6 }}
    {{- else if .Values.global.defaultTolerations }}
          tolerations:
    {{ toYaml .Values.global.defaultTolerations | indent 6 }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/TestAnnotationRenderer.kt

            annotations: KaAnnotationList,
            currentMetaAnnotations: Set<ClassId>?,
            indent: Int
        ) {
            appendLine("annotations: [".indented(indent))
            for (annotation in annotations) {
                appendLine(DebugSymbolRenderer().renderAnnotationApplication(analysisSession, annotation).indented(indent = indent + 2))
                if (currentMetaAnnotations != null) {
                    val classId = annotation.classId ?: continue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. pkg/util/protomarshal/protomarshal.go

    	m := jsonpb.Marshaler{Indent: indent, EnumsAsInts: enumsAsInts}
    	return m.MarshalToString(legacyproto.MessageV1(msg))
    }
    
    func ToJSONWithAnyResolver(msg proto.Message, indent string, anyResolver jsonpb.AnyResolver) (string, error) {
    	if msg == nil {
    		return "", errors.New("unexpected nil message")
    	}
    
    	m := jsonpb.Marshaler{
    		Indent:      indent,
    		AnyResolver: anyResolver,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return t.goString(0, "")
    }
    
    func (t *Trinary) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sTrinary:\n%s\n%s\n%s\n%s", indent, "", field,
    		t.Op.goString(indent+2, "Op: "),
    		t.First.goString(indent+2, "First: "),
    		t.Second.goString(indent+2, "Second: "),
    		t.Third.goString(indent+2, "Third: "))
    }
    
    // Fold is a C++17 fold-expression.  Arg2 is nil for a unary operator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top