Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for dumpling (0.14 sec)

  1. cmd/data-usage-cache.go

    	// drive timeout by default is 2 minutes, we do not need to wait longer.
    	return save(name, time.Minute)
    }
    
    // dataUsageCacheVer indicates the cache version.
    // Bumping the cache version will drop data from previous versions
    // and write new data with the new version.
    const (
    	dataUsageCacheVerCurrent = 8
    	dataUsageCacheVerV7      = 7
    	dataUsageCacheVerV6      = 6
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    			// Not blocking on a lock.
    			break
    		}
    		// Blocking on a lock, measure it. Note that because we're
    		// sampling, we have to multiply by our sampling period to get
    		// a more representative estimate of the absolute value.
    		// gTrackingPeriod also represents an accurate sampling period
    		// because we can only enter this state from _Grunning.
    		now := nanotime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/runtime/metrics_test.go

    			}
    
    			const timerSlop = 1.5 * samplingSlop // account for nanotime vs cputicks, plus the two views' independent sampling
    			if profileGrowth > timerSlop*metricGrowth || metricGrowth > timerSlop*profileGrowth {
    				t.Errorf("views differ by more than %fx", timerSlop)
    			}
    		})
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/runtime/panic.go

    	p0, saveOpenDeferState := p, p.deferBitsPtr != nil && *p.deferBitsPtr != 0
    
    	// Unwind the panic stack.
    	for ; p != nil && uintptr(p.startSP) < sp; p = p.link {
    		// Don't allow jumping past a pending Goexit.
    		// Instead, have its _panic.start() call return again.
    		//
    		// TODO(mdempsky): In this case, Goexit will resume walking the
    		// stack where it left off, which means it will need to rewalk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    		// didn't create them itself.
    		jumpedChains.Delete("ACCEPT", "REJECT", "DROP", "MARK", "RETURN", "DNAT", "SNAT", "MASQUERADE")
    
    		// Find cases where we have "-A FOO ... -j BAR" but no ":BAR", meaning
    		// that we are jumping to a chain that was not created.
    		missingChains := jumpedChains.Difference(createdChains)
    		missingChains = missingChains.Union(filledChains.Difference(createdChains))
    		if len(missingChains) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. RELEASE.md

            `choose_from_datasets`. Setting `stop_on_empty_dataset=True` will stop
            sampling if it encounters an empty dataset. This preserves the sampling
            ratio throughout training. The prior behavior was to continue sampling,
            skipping over exhausted datasets, until all datasets are exhausted. By
            default, the original behavior (`stop_on_empty_dataset=False`) is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // This can be set either to image name if hub is also set, or can be set to the full hub:name string.
      //
      // Examples: custom-pilot, docker.io/someuser:custom-pilot
      string image = 6;
    
      // Trace sampling fraction.
      //
      // Used to set the fraction of time that traces are sampled. Higher values are more accurate but add CPU overhead.
      //
      // Allowed values: 0.0 to 1.0
      double traceSampling = 8;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - This PR adds tracing support to the kubelet's read-only endpoint, which currently does not have tracing. It makes use the WithPublicEndpoint option to prevent callers from influencing sampling decisions. ([#121770](https://github.com/kubernetes/kubernetes/pull/121770), [@frzifus](https://github.com/frzifus)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    // On return, u.frame contains:
    //   - fp is the stack pointer of the caller.
    //   - lr is the program counter that called fn.
    //   - varp, argp, and continpc are populated for the current frame.
    //
    // If fn is a stack-jumping function, resolveInternal can change the entire
    // frame state to follow that stack jump.
    //
    // This is internal to unwinder.
    func (u *unwinder) resolveInternal(innermost, isSyscall bool) {
    	frame := &u.frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    					if seenNow {
    						t.Fatalf("unexpected recursive time.now")
    					}
    					seenNow = true
    				}
    			}
    		}
    	}
    }
    
    func TestProfilerStackDepth(t *testing.T) {
    	// Disable sampling, otherwise it's difficult to assert anything.
    	oldMemRate := runtime.MemProfileRate
    	runtime.MemProfileRate = 1
    	runtime.SetBlockProfileRate(1)
    	oldMutexRate := runtime.SetMutexProfileFraction(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top