Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for curNum (0.2 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            outputContains("Compiling with toolchain '${curJvm.javaHome.absolutePath}'")
            outputContains("Compiling with JDK Java compiler API")
            outputDoesNotContain("Compiling with Java command line compiler")
            outputDoesNotContain("Started Gradle worker daemon")
            classJavaVersion(javaClassFile("Foo.class")) == JavaVersion.toVersion(curJvm.javaVersion)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    			fns := fileNodes[filename]
    			flatSum, cumSum := fns.Sum()
    
    			fnodes, _, err := getSourceFromFile(filename, reader, fns, 0, 0)
    			fmt.Fprintf(w, "ROUTINE ======================== %s in %s\n", name, filename)
    			fmt.Fprintf(w, "%10s %10s (flat, cum) %s of Total\n",
    				rpt.formatValue(flatSum), rpt.formatValue(cumSum),
    				measurement.Percentage(cumSum, rpt.total))
    
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. src/runtime/asm_wasm.s

    // func switchToCrashStack0(fn func())
    TEXT runtime·switchToCrashStack0(SB), NOSPLIT, $0-8
    	MOVD fn+0(FP), CTXT	// context register
    	MOVD	g_m(g), R2	// curm
    
    	// set g to gcrash
    	MOVD	$runtime·gcrash(SB), g	// g = &gcrash
    	MOVD	R2, g_m(g)	// g.m = curm
    	MOVD	g, m_g0(R2)	// curm.g0 = g
    
    	// switch to crashstack
    	I64Load (g_stack+stack_hi)(g)
    	I64Const $(-4*8)
    	I64Add
    	I32WrapI64
    	Set SP
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad_test.cc

      int axis = std::get<2>(GetParam());
    
      TensorShape shape({2, 3, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      Cumsum::Attrs attrs;
      attrs.exclusive_ = std::get<0>(GetParam());
      attrs.reverse_ = std::get<1>(GetParam());
      auto y = Cumsum(scope_, x, axis, attrs);
      RunTest({x}, {shape}, {y}, {shape});
    }
    
    INSTANTIATE_TEST_SUITE_P(CumsumGrad, CumsumGradTest,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  5. docs/tr/docs/tutorial/path-params.md

    * Veri doğrulama
    * API tanımlamaları ve otomatik dokümantasyon
    
    Ve sadece, bunları bir kez tanımlamanız yeterli.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. docs/tr/docs/async.md

    ### Burger Sonucu
    
    Bu "aşkınla fast food burgerleri" senaryosunda, çok fazla bekleme olduğu için 🕙, eşzamanlı bir sisteme sahip olmak çok daha mantıklı ⏸🔀⏯.
    
    Web uygulamalarının çoğu için durum böyledir.
    
    Pek çok kullanıcı var, ama sunucunuz pek de iyi olmayan bir bağlantı ile istek atmalarını bekliyor.
    
    Ve sonra yanıtların geri gelmesi için tekrar 🕙 bekliyor
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        """
        total_freq = sum(self._hist_freq)
        # hist_freq_cumsum is dividing cumulative sum of hist_freq by total_freq
        # hist_freq_cumsum's value is in range [0, 1] by its definition
        hist_freq_cumsum = np.cumsum(self._hist_freq) / total_freq
    
        # min_percentile and max_percentile are converted from [0, 100] to [0, 1].
        min_quantile, max_quantile = (
            self._calib_opts.calibration_parameters.min_percentile / 100.0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    			fmt.Fprintf(w, "    AKA ======================== %s\n", name)
    		}
    		fmt.Fprintf(w, "%10s %10s (flat, cum) %s of Total\n",
    			rpt.formatValue(flatSum), rpt.formatValue(cumSum),
    			measurement.Percentage(cumSum, rpt.total))
    
    		function, file, line := "", "", 0
    		for _, n := range ns {
    			locStr := ""
    			// Skip loc information if it hasn't changed from previous instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. src/runtime/asm_mips64x.s

    TEXT runtime·switchToCrashStack0(SB), NOSPLIT, $0-8
    	MOVV	fn+0(FP), REGCTXT	// context register
    	MOVV	g_m(g), R2	// curm
    
    	// set g to gcrash
    	MOVV	$runtime·gcrash(SB), g	// g = &gcrash
    	CALL	runtime·save_g(SB)
    	MOVV	R2, g_m(g)	// g.m = curm
    	MOVV	g, m_g0(R2)	// curm.g0 = g
    
    	// switch to crashstack
    	MOVV	(g_stack+stack_hi)(g), R2
    	ADDV	$(-4*8), R2, R29
    
    	// call target function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. src/runtime/asm_loong64.s

    TEXT runtime·switchToCrashStack0(SB), NOSPLIT, $0-8
    	MOVV	fn+0(FP), REGCTXT	// context register
    	MOVV	g_m(g), R4	// curm
    
    	// set g to gcrash
    	MOVV	$runtime·gcrash(SB), g	// g = &gcrash
    	JAL	runtime·save_g(SB)
    	MOVV	R4, g_m(g)	// g.m = curm
    	MOVV	g, m_g0(R4)	// curm.g0 = g
    
    	// switch to crashstack
    	MOVV	(g_stack+stack_hi)(g), R4
    	ADDV	$(-4*8), R4, R3
    
    	// call target function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top