Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for isSticky (0.13 sec)

  1. src/math/big/bits_test.go

    			min = b
    		}
    		if i == 0 || b > max {
    			max = b
    		}
    	}
    	prec0 := uint(max + 1 - min)
    	if prec >= prec0 {
    		return x.Float()
    	}
    	// prec < prec0
    
    	// determine bit 0, rounding, and sticky bit, and result bits z
    	var bit0, rbit, sbit uint
    	var z Bits
    	r := max - int(prec)
    	for _, b := range x {
    		switch {
    		case b == r:
    			rbit = 1
    		case b < r:
    			sbit = 1
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

                        properties:
                          timeoutSeconds:
                            description: timeoutSeconds specifies the seconds of ClientIP
                              type session sticky time. The value must be >0 && <=86400(for
                              1 day) if ServiceAffinity == "ClientIP". Default value is
                              10800(for 3 hours).
                            type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_profiler.cc

    }
    
    void RegisterExecutionForCluster(
        const NameAttrList& function,
        DeviceCompilationProfiler::ClusterCompileStats* stats) {
      ++stats->execution_count;
    
      // The is_megamorphic bit is "sticky".  We assume clusters that have been
      // observed to be megamorphic once stay megamorphic forever.
      if (!stats->is_megamorphic &&
          ShouldBeMegamorphic(stats->compile_count, stats->execution_count)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/net/http/roundtrip_js.go

    // See https://fetch.spec.whatwg.org/#readablestream for more information.
    type streamReader struct {
    	pending []byte
    	stream  js.Value
    	err     error // sticky read error
    }
    
    func (r *streamReader) Read(p []byte) (n int, err error) {
    	if r.err != nil {
    		return 0, r.err
    	}
    	if len(r.pending) == 0 {
    		var (
    			bCh   = make(chan []byte, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

    }
    table thead {
      font-family: 'Roboto Medium', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    }
    table tr th {
      position: sticky;
      top: 0;
      background-color: #ddd;
      text-align: right;
      padding: .3em .5em;
    }
    table tr td {
      padding: .3em .5em;
      text-align: right;
    }
    #top table tr th:nth-child(6),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  6. src/math/big/float.go

    	rbit := z.mant.bit(r) & 1    // rounding bit; be safe and ensure it's a single bit
    	// The sticky bit is only needed for rounding ToNearestEven
    	// or when the rounding bit is zero. Avoid computation otherwise.
    	if sbit == 0 && (rbit == 0 || z.mode == ToNearestEven) {
    		sbit = z.mant.sticky(r)
    	}
    	sbit &= 1 // be safe and ensure it's a single bit
    
    	// cut off extra words
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  7. src/archive/tar/common.go

    	mode = fs.FileMode(fi.h.Mode).Perm()
    
    	// Set setuid, setgid and sticky bits.
    	if fi.h.Mode&c_ISUID != 0 {
    		mode |= fs.ModeSetuid
    	}
    	if fi.h.Mode&c_ISGID != 0 {
    		mode |= fs.ModeSetgid
    	}
    	if fi.h.Mode&c_ISVTX != 0 {
    		mode |= fs.ModeSticky
    	}
    
    	// Set file mode bits; clear perm, setuid, setgid, and sticky bits.
    	switch m := fs.FileMode(fi.h.Mode) &^ 07777; m {
    	case c_ISDIR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. src/math/big/decimal.go

    // digits that need to be computed by init by providing an additional
    // precision argument and keeping track of when a number was truncated early
    // (equivalent of "sticky bit" in binary rounding).
    
    // TODO(gri) Along the same lines, enforce some limit to shift magnitudes
    // to avoid "infinitely" long running conversions (until we run out of space).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  9. src/database/sql/fakedb_test.go

    	c.numPrepare++
    	if c.db == nil {
    		panic("nil c.db; conn = " + fmt.Sprintf("%#v", c))
    	}
    
    	if c.stickyBad || (hookPrepareBadConn != nil && hookPrepareBadConn()) {
    		return nil, fakeError{Message: "Prepare: Sticky Bad", Wrapped: driver.ErrBadConn}
    	}
    
    	c.touchMem()
    	var firstStmt, prev *fakeStmt
    	for _, query := range strings.Split(query, ";") {
    		parts := strings.Split(query, "|")
    		if len(parts) < 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/io/fs/fs.go

    	ModeSetgid                                     // g: setgid
    	ModeCharDevice                                 // c: Unix character device, when ModeDevice is set
    	ModeSticky                                     // t: sticky
    	ModeIrregular                                  // ?: non-regular file; nothing else is known about this file
    
    	// Mask for the type bits. For regular files, none will be set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top