Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for printstring (0.28 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                    string.set(stringProvider)
                }
            """
    
            when:
            configurationCacheFails "printString"
    
            then:
            failureDescriptionContains missingValueMessage { type('Build_gradle.PrintString').property('string') }
            configurationCache.assertStateStored()
    
            when:
            configurationCacheFails "printString"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen_util.cc

        } else {
          strings::StrAppend(&ret, indent, "/// ",
                             text.substr(0, last_non_space + 1), "\n");
        }
        text.remove_prefix(newline + 1);
      }
      return ret;
    }
    
    string PrintString(StringPiece str) {
      return strings::StrCat("\"", absl::CEscape(str), "\"");
    }
    
    string PrintTensorShape(const TensorShapeProto& shape_proto) {
      PartialTensorShape shape(shape_proto);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func goPanicSliceConvert(x int, y int)
    
    func printbool(bool)
    func printfloat(float64)
    func printint(int64)
    func printhex(uint64)
    func printuint(uint64)
    func printcomplex(complex128)
    func printstring(string)
    func printpointer(any)
    func printuintptr(uintptr)
    func printiface(any)
    func printeface(any)
    func printslice(any)
    func printnl()
    func printsp()
    func printlock()
    func printunlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/builtin.go

    	{"printbool", funcTag, 19},
    	{"printfloat", funcTag, 21},
    	{"printint", funcTag, 23},
    	{"printhex", funcTag, 25},
    	{"printuint", funcTag, 25},
    	{"printcomplex", funcTag, 27},
    	{"printstring", funcTag, 29},
    	{"printpointer", funcTag, 30},
    	{"printuintptr", funcTag, 31},
    	{"printiface", funcTag, 30},
    	{"printeface", funcTag, 30},
    	{"printslice", funcTag, 30},
    	{"printnl", funcTag, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/builtin.go

    			}
    			switch cs {
    			case " ":
    				on = typecheck.LookupRuntime("printsp")
    			case "\n":
    				on = typecheck.LookupRuntime("printnl")
    			default:
    				on = typecheck.LookupRuntime("printstring")
    			}
    		default:
    			badtype(ir.OPRINT, n.Type(), nil)
    			continue
    		}
    
    		r := ir.NewCallExpr(base.Pos, ir.OCALL, on, nil)
    		if params := on.Type().Params(); len(params) > 0 {
    			t := params[0].Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    #if GTEST_HAS_GLOBAL_STRING
    GTEST_API_ void PrintStringTo(const ::string&s, ::std::ostream* os);
    inline void PrintTo(const ::string& s, ::std::ostream* os) {
      PrintStringTo(s, os);
    }
    #endif  // GTEST_HAS_GLOBAL_STRING
    
    GTEST_API_ void PrintStringTo(const ::std::string&s, ::std::ostream* os);
    inline void PrintTo(const ::std::string& s, ::std::ostream* os) {
      PrintStringTo(s, os);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

      report.AddQuantizationResult(std::move(result));
    
      // Check that the report string is equivalent to the textproto representation
      // of the `QuantizationResults`.
      std::string result_str{};
      TextFormat::PrintToString(report.GetQuantizationResults(), &result_str);
    
      EXPECT_THAT(report.ToString(), HasSubstr("Quantization Report"));
      EXPECT_THAT(report.ToString(), HasSubstr(result_str));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      std::string txt_metadata;
      if (tpu_compile_metadata_debug) {
        ::tensorflow::protobuf::TextFormat::Printer printer;
        printer.SetExpandAny(true);
        printer.PrintToString(metadata, &txt_metadata);
      } else {
        metadata.SerializeToString(&txt_metadata);
      }
    
      auto compile_op = builder->create<TF::_TPUCompileMlirOp>(
          cluster_func.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

              MakeAndRegisterTestInfo(
                  test_case_name.c_str(),
                  test_name_stream.GetString().c_str(),
                  NULL,  // No type parameter.
                  PrintToString(*param_it).c_str(),
                  GetTestCaseTypeId(),
                  TestCase::SetUpTestCase,
                  TestCase::TearDownTestCase,
                  test_info->test_meta_factory->CreateTestFactory(*param_it));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. src/runtime/string.go

    type stringStructDWARF struct {
    	str *byte
    	len int
    }
    
    func stringStructOf(sp *string) *stringStruct {
    	return (*stringStruct)(unsafe.Pointer(sp))
    }
    
    func intstring(buf *[4]byte, v int64) (s string) {
    	var b []byte
    	if buf != nil {
    		b = buf[:]
    		s = slicebytetostringtmp(&b[0], len(b))
    	} else {
    		s, b = rawstring(4)
    	}
    	if int64(rune(v)) != v {
    		v = runeError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top