Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,247 for whatev (0.14 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

    }
    .submenu {
      display: none;
      z-index: 1;
      margin-top: -4px;
      min-width: 10em;
      position: absolute;
      left: 0px;
      background-color: white;
      box-shadow: 0 1px 5px rgba(0,0,0,.3);
      font-size: 100%;
      text-transform: none;
      white-space: nowrap;
    }
    .menu-item, .submenu {
      user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      -webkit-user-select: none;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/math/big/natdiv.go

    		// and in long division, because we know that q̂ is wrong by at most one.
    		qhatv := tmp.make(3 * n)
    		clear(qhatv)
    		qhatv = qhatv.mul(qhat, v[:s])
    		for i := 0; i < 2; i++ {
    			e := qhatv.cmp(uu.norm())
    			if e <= 0 {
    				break
    			}
    			subVW(qhat, qhat, 1)
    			c := subVV(qhatv[:s], qhatv[:s], v[:s])
    			if len(qhatv) > s {
    				subVW(qhatv[s:], qhatv[s:], c)
    			}
    			addAt(uu[s:], v[s:], 0)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/types.go

    }
    
    type CounterConfig struct {
    	Name  string
    	Rate  float64 // If X <= Rate, report this counter
    	Depth int     `json:",omitempty"` // for stack counters
    }
    
    // A Report is what's uploaded (or saved locally)
    type Report struct {
    	Week     string  // first day this report covers (YYYY-MM-DD)
    	LastWeek string  // Week field from latest previous report uploaded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/trace/tasks.go

    			last := t.startTime()
    			for _, ev := range rawEvents {
    				what := describeEvent(ev)
    				if what == "" {
    					continue
    				}
    				sinceStart := ev.Time().Sub(t.startTime())
    				events = append(events, event{
    					WhenString: fmt.Sprintf("%2.9f", sinceStart.Seconds()),
    					Elapsed:    ev.Time().Sub(last),
    					What:       what,
    					Goroutine:  primaryGoroutine(ev),
    				})
    				last = ev.Time()
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/tests/go122-go-create-without-running-g.test

    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    EventBatch gen=1 m=18446744073709551615 time=0 size=12
    Strings
    String id=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 446 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/types_alias.go

    // Common types and directories used by multiple packages.
    
    // An UploadConfig controls what data is uploaded.
    type UploadConfig = telemetry.UploadConfig
    
    type ProgramConfig = telemetry.ProgramConfig
    
    type CounterConfig = telemetry.CounterConfig
    
    // A Report is what's uploaded (or saved locally)
    type Report = telemetry.Report
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 605 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

     * @since 4.3
     */
    @SupportsKotlinAssignmentOverloading
    public interface Property<T> extends Provider<T>, HasConfigurableValue, SupportsConvention {
        /**
         * Sets the value of the property to the given value, replacing whatever value the property already had.
         *
         * <p>
         * This method can also be used to discard the value of the property, by passing it {@code null}. When the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/internal/poll/fd.go

    // consume removes data from a slice of byte slices, for writev.
    func consume(v *[][]byte, n int64) {
    	for len(*v) > 0 {
    		ln0 := int64(len((*v)[0]))
    		if ln0 > n {
    			(*v)[0] = (*v)[0][n:]
    			return
    		}
    		n -= ln0
    		(*v)[0] = nil
    		*v = (*v)[1:]
    	}
    }
    
    // TestHookDidWritev is a hook for testing writev.
    var TestHookDidWritev = func(wrote int) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/net/http/roundtrip_js.go

    // code path.
    var jsFetchDisabled = js.Global().Get("process").Type() == js.TypeObject &&
    	strings.HasPrefix(js.Global().Get("process").Get("argv0").String(), "node")
    
    // RoundTrip implements the [RoundTripper] interface using the WHATWG Fetch API.
    func (t *Transport) RoundTrip(req *Request) (*Response, error) {
    	// The Transport has a documented contract that states that if the DialContext or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top