Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for relabel (0.1 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		label = append(label, activeFilters...)
    	}
    
    	label = append(label, fmt.Sprintf("Showing nodes accounting for %s, %s of %s total", rpt.formatValue(flatSum), strings.TrimSpace(measurement.Percentage(flatSum, rpt.total)), rpt.formatValue(rpt.total)))
    
    	if rpt.total != 0 {
    		if droppedNodes > 0 {
    			label = append(label, genLabel(droppedNodes, "node", "cum",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/internal/trace/event/go122/event.go

    	EvHeapGoal           // gcController.heapGoal() change [timestamp, heap goal in bytes]
    
    	// Annotations.
    	EvGoLabel         // apply string label to current running goroutine [timestamp, label string ID]
    	EvUserTaskBegin   // trace.NewTask [timestamp, internal task ID, internal parent task ID, name string ID, stack ID]
    	EvUserTaskEnd     // end of a task [timestamp, internal task ID, stack ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.h

      // eligible for clustering.
      int64_t tf_xla_clustering_fuel;
    
      // If tf_xla_disable_deadness_safety_checks_for_debugging is set to true then
      // we do not do deadness related safety checks.  This is unsound in general,
      // but can be used as a debugging aid.
      bool tf_xla_disable_deadness_safety_checks_for_debugging;
    
      // If tf_xla_disable_resource_variable_safety_checks_for_debugging is set to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	cmd := exec.Command("dot", "-Tsvg")
    	out := &bytes.Buffer{}
    	cmd.Stdin, cmd.Stdout, cmd.Stderr = bytes.NewBuffer(dot), out, os.Stderr
    	if err := cmd.Run(); err != nil {
    		return nil, err
    	}
    
    	// Fix dot bug related to unquoted ampersands.
    	svg := bytes.Replace(out.Bytes(), []byte("&;"), []byte("&;"), -1)
    
    	// Cleanup for embedding by dropping stuff before the <svg> start.
    	if pos := bytes.Index(svg, []byte("<svg")); pos >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. cmd/bucket-lifecycle.go

    		}
    	}
    }
    
    type expiryTask struct {
    	objInfo ObjectInfo
    	event   lifecycle.Event
    	src     lcEventSrc
    }
    
    // expiryStats records metrics related to ILM expiry activities
    type expiryStats struct {
    	missedExpiryTasks      atomic.Int64
    	missedFreeVersTasks    atomic.Int64
    	missedTierJournalTasks atomic.Int64
    	workers                atomic.Int32
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     * and on the Java module-path.</p>
     *
     * <h2>Relationship with Java compiler standard location</h2>
     * This enumeration is closely related to the {@link JavaFileManager.Location} enumerations.
     * A difference is that the latter enumerates input and output files, while {@code JavaPathType}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/stdlib_test.go

    	p, err := build.Default.Import(path, dir, build.FindOnly)
    	if err != nil {
    		return nil, err
    	}
    
    	pkg, err := c.getDirPackage(p.Dir)
    	if pkg != nil {
    		// As long as pkg is non-nil, avoid redundant errors related to failed
    		// imports. TestStdlib will collect errors once for each package.
    		return pkg, nil
    	}
    	return nil, err
    }
    
    // getDirPackage gets the package defined in dir from the future cache.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package facts defines a serializable set of analysis.Fact.
    //
    // It provides a partial implementation of the Fact-related parts of the
    // analysis.Pass interface for use in analysis drivers such as "go vet"
    // and other build systems.
    //
    // The serial format is unspecified and may change, so the same version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile.bzl

            "header_out": attr.output(),
            "cmd": attr.string(),
            "tfcompile_tool": attr.label(cfg = "exec", executable = True, allow_files = True),
            "tfcompile_graph": attr.label(allow_single_file = True),
            "tfcompile_config": attr.label(allow_single_file = True),
            "entry_point": attr.string(),
            "cpp_class": attr.string(),
            "target_triple": attr.string(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set.go

    	relatedRSs := make([]*apps.ReplicaSet, 0, len(objects))
    	for _, obj := range objects {
    		relatedRSs = append(relatedRSs, obj.(*apps.ReplicaSet))
    	}
    
    	if klogV := logger.V(2); klogV.Enabled() {
    		klogV.Info("Found related ReplicaSets", "replicaSet", klog.KObj(rs), "relatedReplicaSets", klog.KObjSlice(relatedRSs))
    	}
    
    	return relatedRSs
    }
    
    // getPodReplicaSets returns a list of ReplicaSets matching the given pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top