Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 363 for sticky (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/volume/util/subpath/subpath_linux_test.go

    			"directory-with-suid",
    			func(base string) error {
    				return nil
    			},
    			"test/directory",
    			"test/directory",
    			os.FileMode(0777) + os.ModeDir + os.ModeSetuid,
    			false,
    		},
    		{
    			"directory-with-sticky-bit",
    			func(base string) error {
    				return nil
    			},
    			"test/directory",
    			"test/directory",
    			os.FileMode(0777) + os.ModeDir + os.ModeSticky,
    			false,
    		},
    		{
    			"directory-exists",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

        }
    
        private void registerStickyTip() {
            contents.append("    <div class=\"uk-container uk-padding\">\n")
                .append("        <div class=\"uk-card uk-card-default uk-card-body\" style=\"z-index: 980;\" uk-sticky=\"bottom: true\">\n")
                .append("            <h2 class=\"uk-modal-title\">Troubleshooting</h2>\n")
                .append("            <p>Please review the errors reported above carefully.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top