Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 151 for dumpling (0.2 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"drop_of_blood":                        "\U0001fa78",
    	"droplet":                              "\U0001f4a7",
    	"drum":                                 "\U0001f941",
    	"duck":                                 "\U0001f986",
    	"dumpling":                             "\U0001f95f",
    	"dvd":                                  "\U0001f4c0",
    	"e-mail":                               "\U0001f4e7",
    	"eagle":                                "\U0001f985",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. cluster/log-dump/README.md

    ## This directory is deprecated!
    
    Log dumping utility was ported from kubernetes/kubernetes repository to
    [kubernetes/test-infra](https://github.com/kubernetes/test-infra/tree/master/logexporter/cluster).
    If you require changes to this script, please consider migrating your jobs to use the new
    log dumping mechanism first.
    
    Currently, `log-dump.sh` file is added to every newly released `kubekins-e2e` image.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 15 08:58:09 UTC 2020
    - 1009 bytes
    - Viewed (0)
  3. src/internal/trace/reader_test.go

    	if err != nil {
    		t.Fatalf("dumping trace: %v", err)
    	}
    	var sb strings.Builder
    	tw, err := raw.NewTextWriter(&sb, version.Current)
    	if err != nil {
    		t.Fatalf("dumping trace: %v", err)
    	}
    	for {
    		ev, err := br.ReadEvent()
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			t.Fatalf("dumping trace: %v", err)
    		}
    		if err := tw.WriteEvent(ev); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/runtime/heapdump.go

    	dumpint(m.Sys)
    	dumpint(m.Lookups)
    	dumpint(m.Mallocs)
    	dumpint(m.Frees)
    	dumpint(m.HeapAlloc)
    	dumpint(m.HeapSys)
    	dumpint(m.HeapIdle)
    	dumpint(m.HeapInuse)
    	dumpint(m.HeapReleased)
    	dumpint(m.HeapObjects)
    	dumpint(m.StackInuse)
    	dumpint(m.StackSys)
    	dumpint(m.MSpanInuse)
    	dumpint(m.MSpanSys)
    	dumpint(m.MCacheInuse)
    	dumpint(m.MCacheSys)
    	dumpint(m.BuckHashSys)
    	dumpint(m.GCSys)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

        List<String> listObjectFiles() {
            def dumpbin = findExe("lib.exe")
            def process = [dumpbin.absolutePath, '/LIST', binaryFile.absolutePath].execute(["PATH=$vcPath"], null)
            return process.inputStream.readLines().drop(3).collect { new File(it).name }
        }
    
        List<String> listLinkedLibraries() {
            def dumpbin = findExe("dumpbin.exe")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/tracing_test.go

    }
    
    func fakeTracingSpec(provider *meshconfig.MeshConfig_ExtensionProvider, sampling float64, disableReporting bool,
    	useRequestIDForTraceSampling bool,
    ) *model.TracingConfig {
    	t := &model.TracingConfig{
    		ClientSpec: tracingSpec(provider, sampling, disableReporting, useRequestIDForTraceSampling),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  7. tests/integration/operator/operator_dumper.go

    }
    
    func (d *operatorDumper) Dump(ctx resource.Context) {
    	scopes.Framework.Errorf("=== Dumping Istio Deployment State for %v...", ctx.ID())
    	ns := d.ns
    	if len(ns) < 1 {
    		ns = "istio-operator"
    	}
    
    	dir, err := ctx.CreateTmpDirectory("istio-operator-" + d.ID().String())
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping operator contents: %v", err)
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/tracing.go

    func proxyConfigSamplingValue(config *meshconfig.ProxyConfig) float64 {
    	// PILOT_TRACE_SAMPLING
    	sampling := features.TraceSampling
    
    	// Tracing from default_config
    	if config.Tracing != nil && config.Tracing.Sampling != 0.0 {
    		sampling = config.Tracing.Sampling
    
    		if sampling > 100.0 {
    			sampling = 1.0
    		}
    	}
    	return sampling
    }
    
    func configureCustomTags(hcmTracing *hcm.HttpConnectionManager_Tracing,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. cluster/log-dump/log-dump.sh

      echo "Dumping logs from master locally to '${report_dir}'"
      dump_masters
      if [[ "${DUMP_ONLY_MASTER_LOGS:-}" == "true" ]]; then
        echo 'Skipping dumping of node logs'
        return
      fi
    
      # Copy logs from nodes to GCS directly or to artifacts dir locally (through SSH).
      if [[ -n "${gcs_artifacts_dir}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. test/heapsampling.go

    // Test heap sampling logic.
    
    package main
    
    import (
    	"fmt"
    	"math"
    	"runtime"
    )
    
    var a16 *[16]byte
    var a512 *[512]byte
    var a256 *[256]byte
    var a1k *[1024]byte
    var a16k *[16 * 1024]byte
    var a17k *[17 * 1024]byte
    var a18k *[18 * 1024]byte
    
    // This test checks that heap sampling produces reasonable results.
    // Note that heap sampling uses randomization, so the results vary for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 27 21:36:06 UTC 2022
    - 9.7K bytes
    - Viewed (0)
Back to top