Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for dumpling (0.39 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/test/framework/components/namespace/kube.go

    	if n.skipDump {
    		scopes.Framework.Debugf("=== Skip dumping Namespace %s State for %v...", n.name, ctx.ID())
    		return
    	}
    	scopes.Framework.Errorf("=== Dumping Namespace %s State for %v...", n.name, ctx.ID())
    
    	d, err := ctx.CreateTmpDirectory(n.name + "-state")
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping %s contents: %v", n.name, err)
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/installer.go

    		scopes.Framework.Errorf("Unable to create directory for dumping install manifests: %v", err)
    	}
    	for clusterName, manifests := range i.manifests {
    		clusterDir := path.Join(manifestsDir, clusterName)
    		if err := os.Mkdir(manifestsDir, 0o700); err != nil {
    			scopes.Framework.Errorf("Unable to create directory for dumping %s install manifests: %v", clusterName, err)
    		}
    		for i, manifest := range manifests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/debug/debug.cc

        // Open the file for dumping. Failures are logged instead of being
        // propagated to the client because they are non-fatal.
    
        std::unique_ptr<tsl::WritableFile> file;
        if (auto status = tsl::Env::Default()->NewWritableFile(filename, &file);
            !status.ok()) {
          LOG(ERROR) << "Unable to open '" << filename
                     << "' for dumping TFLite MLIR output: " << status;
          return;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. operator/cmd/mesh/profile.go

    // limitations under the License.
    
    package mesh
    
    import (
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    // ProfileCmd is a group of commands related to profile listing, dumping and diffing.
    func ProfileCmd(_ cli.Context) *cobra.Command {
    	pc := &cobra.Command{
    		Use:   "profile",
    		Short: "Commands related to Istio configuration profiles",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top