Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 267 for Inits (0.04 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      // E.g., 9s (45%) 🠆 10s (50%)
      function diffText(from, to) {
        return percentText(from) + " 🠆 " + percentText(to);
      }
    
      // percentText returns text that displays v in appropriate units alongside its
      // percentange.
      function percentText(v) {
        function percent(v, total) {
          return Number(((100.0 * v) / total).toFixed(1)) + '%';
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/math.go

    	decZero = inf.NewDec(0, 0)
    	decOne  = inf.NewDec(1, 0)
    
    	// Largest (in magnitude) number allowed.
    	maxAllowed = infDecAmount{inf.NewDec((1<<63)-1, 0)} // == max int64
    
    	// The maximum value we can represent milli-units for.
    	// Compare with the return value of Quantity.Value() to
    	// see if it's safe to use Quantity.MilliValue().
    	MaxMilliValue = int64(((1 << 63) - 1) / 1000)
    )
    
    const mostNegative = -(mostPositive + 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 23 13:07:14 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  3. src/fmt/doc.go

    	%9f    width 9, default precision
    	%.2f   default width, precision 2
    	%9.2f  width 9, precision 2
    	%9.f   width 9, precision 0
    
    Width and precision are measured in units of Unicode code points,
    that is, runes. (This differs from C's printf where the
    units are always measured in bytes.) Either or both of the flags
    may be replaced with the character '*', causing their values to be
    obtained from the next operand (preceding the one to format),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    compileJava - Compiles main Java source.
    
    ...
    ----
    A task might be responsible for compilation, copying, and moving files around, creating JAR files, generating Javadoc, publishing artifacts to repositories, or many other discrete units of work.
    
    You can also list the tasks only available in the `app` subproject by running `./gradlew :app:tasks`.
    
    TIP: You can obtain more information in the task listing using the `--all` option: `./gradlew tasks --all`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/image/jpeg/scan.go

    		}
    		if ah != 0 && ah != al+1 {
    			return FormatError("bad successive approximation values")
    		}
    	}
    
    	// mxx and myy are the number of MCUs (Minimum Coded Units) in the image.
    	h0, v0 := d.comp[0].h, d.comp[0].v // The h and v values from the Y components.
    	mxx := (d.width + 8*h0 - 1) / (8 * h0)
    	myy := (d.height + 8*v0 - 1) / (8 * v0)
    	if d.img1 == nil && d.img3 == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/runtime/sys_solaris_amd64.s

    	MOVQ	SP, -8(R14)
    	LEAQ	-8(R14), SP
    	CALL	AX
    	MOVQ	0(SP), SP
    	RET
    
    noswitch:
    	// Not a Go-managed thread. Do not switch stack.
    	CALL	AX
    	RET
    
    // Runs on OS stack. duration (in µs units) is in DI.
    TEXT usleep2<>(SB),NOSPLIT,$0
    	LEAQ	libc_usleep(SB), AX
    	CALL	AX
    	RET
    
    // Runs on OS stack, called from runtime·osyield.
    TEXT runtime·osyield1(SB),NOSPLIT,$0
    	LEAQ	libc_sched_yield(SB), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. src/runtime/netpoll_windows.go

    		// in which automatically cancels the wait completion packet.
    		fallthrough
    	case STATUS_SUCCESS:
    		dt := -delay / 100 // relative sleep (negative), 100ns units
    		if stdcall6(_SetWaitableTimer, mp.waitIocpTimer, uintptr(unsafe.Pointer(&dt)), 0, 0, 0, 0) == 0 {
    			println("runtime: SetWaitableTimer failed; errno=", getlasterror())
    			throw("runtime: netpoll failed")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

      //    - COMPONENT_BIAS: INT_32
      // And different spec can be specified with quantization_component_specs.
      // If the below unit-wise configuration exists, this default one will become
      // the quantization configuration for units that are not specified in
      // unit-wise configurations.
      QuantizationMethod quantization_method = 1;
    
      OpSet op_set = 2;  // If not specified, it defaults to `XLA`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	unit := minUnit
    	if minUnit != maxUnit && minValue*100 < maxValue && o.OutputFormat != Callgrind {
    		// Minimum and maximum values have different units. Scale
    		// minimum by 100 to use larger units, allowing minimum value to
    		// be scaled down to 0.01, except for callgrind reports since
    		// they can only represent integer values.
    		_, unit = measurement.Scale(100*minValue, o.SampleUnit, "minimum")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. hack/verify-golangci-lint.sh

       -a: automatically select the common base of origin/master and HEAD
           as revision
       -s: select a strict configuration for new code
       -n: in addition to strict checking, also enable hints (aka nits) that may are may not
           be useful
       -g <github action file>: also write results with --out-format=github-actions
           to a separate file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top