Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for dumpling (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    		s.currentCount.Add(1)
    		return
    	}
    
    	s.updateHistory(s.currentUnix, s.currentCount.Load())
    	s.currentUnix = unixTime
    	s.currentCount.Store(1)
    
    	// We only consider updating retryAfter when bumping the current second.
    	// However, given that we didn't report anything for the current second,
    	// we recompute it based on statistics from the previous one.
    	s.updateRetryAfterIfNeededLocked(unixTime)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. pkg/monitoring/monitortest/test.go

    				}
    				return nil
    			}
    		}
    		return fmt.Errorf("no matching rows found")
    	}, opt...)
    	if err != nil {
    		m.t.Logf("Metric %v/%v not matched (%v); Dumping known metrics:", name, tags, err)
    		m.Dump()
    		m.t.Fatal(err)
    	}
    
    	// Run through linter. For now this is warning, maybe allow opt-in to strict
    	res, err := m.reg.Gather()
    	if err != nil {
    		m.t.Fatal(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/fmt.go

    // The valid formats are:
    //
    //	%v	Go syntax, semicolon-separated
    //	%.v	Go syntax, comma-separated
    //	%+v	Debug syntax, as in DumpList.
    func (l Nodes) Format(s fmt.State, verb rune) {
    	if s.Flag('+') && verb == 'v' {
    		// %+v is DumpList output
    		dumpNodes(s, l, 1)
    		return
    	}
    
    	if verb != 'v' {
    		fmt.Fprintf(s, "%%!%c(Nodes)", verb)
    		return
    	}
    
    	sep := "; "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. istioctl/pkg/cli/context.go

    	rc, err := kube.DefaultRestConfig(kubeconfig, configContext, func(config *rest.Config) {
    		// We are running a one-off command locally, so we don't need to worry too much about rate limiting
    		// Bumping this up greatly decreases install time
    		config.QPS = 50
    		config.Burst = 100
    	})
    	if err != nil {
    		return nil, err
    	}
    	return kube.NewCLIClient(kube.NewClientConfigForRestConfig(rc), kube.WithRevision(revision))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/AbstractCompile.java

         */
        @ReplacedBy("destinationDirectory")
        @Deprecated
        public File getDestinationDir() {
            // Used in Kotlin plugin - needs updating there and bumping the version first. Followup with https://github.com/gradle/gradle/issues/16783
            DeprecationLogger.deprecateProperty(AbstractCompile.class, "destinationDir")
                .replaceWith("destinationDirectory")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    		reqType = requestInfo.Verb
    	}
    	apiserverRequestExecutionSeconds.WithContext(ctx).WithLabelValues(priorityLevel, flowSchema, reqType).Observe(executionTime.Seconds())
    }
    
    // ObserveWatchCount notes a sampling of a watch count
    func ObserveWatchCount(ctx context.Context, priorityLevel, flowSchema string, count int) {
    	watchCountSamples.WithLabelValues(priorityLevel, flowSchema).Observe(float64(count))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  7. src/net/http/pprof/pprof.go

    	"allocs":       "A sampling of all past memory allocations",
    	"block":        "Stack traces that led to blocking on synchronization primitives",
    	"cmdline":      "The command line invocation of the current program",
    	"goroutine":    "Stack traces of all current goroutines. Use debug=2 as a query parameter to export in the same format as an unrecovered panic.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/internal/cov/readcovdata.go

    // invoked at various important points. CovDataReader is intended
    // to facilitate common coverage data file operations such as
    // merging or intersecting data files, analyzing data files, or
    // dumping data files.
    type CovDataReader struct {
    	vis            CovDataVisitor
    	indirs         []string
    	matchpkg       func(name string) bool
    	flags          CovDataReaderFlags
    	err            error
    	verbosityLevel int
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/runtime/libfuzzer_amd64.s

    // a hook with a fake return address whose lower 9 bits are `fake_pc` up to a
    // constant shift. This is achieved by pushing a return address pointing into
    // 512 ret instructions at offset `fake_pc` onto the stack and then jumping
    // directly to the address of the hook.
    //
    // Note: We only set the lowest 9 bits of the return address since only these
    // bits are used by the libFuzzer value profiling mode for integer compares, see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 04:57:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. pkg/test/framework/test.go

    	RequiresSingleNetwork() Test
    	// TopLevel marks a test as a "top-level test" meaning a container test that has many subtests.
    	// Resources created at this level will be in-scope for dumping when any descendant test fails.
    	TopLevel() Test
    	// Run the test, supplied as a lambda.
    	Run(fn func(t TestContext))
    	// RunParallel runs this test in parallel with other children of the same parent test/suite. Under the hood,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top