Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 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. 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)
  3. 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)
  4. 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)
  5. src/runtime/os_windows.go

    			h = getg().m.highResTimer
    			dt := -10 * int64(us) // relative sleep (negative), 100ns units
    			stdcall6(_SetWaitableTimer, h, uintptr(unsafe.Pointer(&dt)), 0, 0, 0, 0)
    			timeout = _INFINITE
    		} else {
    			h = _INVALID_HANDLE_VALUE
    			timeout = uintptr(us) / 1000 // ms units
    		}
    		stdcall2(_WaitForSingleObject, h, timeout)
    	})
    }
    
    func ctrlHandler(_type uint32) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    // <signedNumber>    ::= <number> | <sign><number>
    // <suffix>          ::= <binarySI> | <decimalExponent> | <decimalSI>
    // <binarySI>        ::= Ki | Mi | Gi | Ti | Pi | Ei
    //
    //	(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)
    //
    // <decimalSI>       ::= m | "" | k | M | G | T | P | E
    //
    //	(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. src/internal/trace/generation.go

    		return 0, fmt.Errorf("internal error: parseFreq called on non-frequency batch")
    	}
    	r := bytes.NewReader(b.data)
    	r.ReadByte() // Consume the EvFrequency byte.
    
    	// Read the frequency. It'll come out as timestamp units per second.
    	f, err := binary.ReadUvarint(r)
    	if err != nil {
    		return 0, err
    	}
    	// Convert to nanoseconds per timestamp unit.
    	return frequency(1.0 / (float64(f) / 1e9)), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/internal/trace/event/go122/event.go

    	EvCPUSamples // start of a section of CPU samples [...EvCPUSample]
    	EvCPUSample  // CPU profiling sample [timestamp, M ID, P ID, goroutine ID, stack ID]
    	EvFrequency  // timestamp units per sec [freq]
    
    	// Procs.
    	EvProcsChange // current value of GOMAXPROCS [timestamp, GOMAXPROCS, stack ID]
    	EvProcStart   // start of P [timestamp, P ID, P seq]
    	EvProcStop    // stop of P [timestamp]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

            }
        }
    }
    ----
    =====
    
    When the `java-gradle-plugin` is applied, users must configure the plugin they are developing using the `gradlePlugin{}` configuration block.
    
    Tasks are units of work executed during your build.
    They can be defined by plugins or inline:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    val functionalTest by tasks.registering(Test::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

      // outputs(full sequence) is used, not the last_output, not the new_states.
      // We will discard everything except the outputs.
      // And the outputs is in the shape of [batch, time, units].
      if (attr.getValue().starts_with("lstm_")) {
        // Check if the keras lstm can be fused, if not, we just don't do anything.
        if (failed(CheckFusableKerasLstm(func, module))) return;
        func.eraseBody();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top