Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 215 for outlier (0.19 sec)

  1. cmd/genman/gen_kube_man.go

    		}
    	case "kube-proxy":
    		// generate manpage for kube-proxy
    		proxy := proxyapp.NewProxyCommand()
    		genMarkdown(proxy, "", outDir)
    		for _, c := range proxy.Commands() {
    			genMarkdown(c, "kube-proxy", outDir)
    		}
    	case "kube-scheduler":
    		// generate manpage for kube-scheduler
    		scheduler := schapp.NewSchedulerCommand()
    		genMarkdown(scheduler, "", outDir)
    		for _, c := range scheduler.Commands() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm_test.py

        statistics.histogram_statistics.bin_width = 1.0
    
        hist_freq = np.zeros(501, dtype=np.int32)
    
        # Advanced calibration methods that use histograms detect outliers, so they
        # don't use the outliers as min/max values.
        hist_freq[0] = 1
        hist_freq[-1] = 1
    
        # The majority of the data exists around the center.
        hist_freq[250] = 1000
        for i in range(1, 201):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/systeminfo/admin_systeminfo.jsp

                    </div>
                </div>
            </div>
            <section class="content">
                <div class="row">
                    <div class="col-md-6">
                        <div class="card card-outline card-primary">
                            <div class="card-header">
                                <h3 class="card-title">
                                    <la:message key="labels.system_info_env_title"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/value_iostream.h

      std::ostream& o_;
    
     public:
      explicit TaggedValueIOStreamVisitor(std::ostream& o) : o_(o) {}
    
      std::ostream& operator()(const ListPtr& x) {
        OutList(o_, x->begin(), x->end(), '[', ']');
        return o_;
      }
      std::ostream& operator()(const TuplePtr& x) {
        OutList(o_, x->begin(), x->end(), '(', ')');
        return o_;
      }
      std::ostream& operator()(const DictPtr& x) {
        o_ << *x;
        return o_;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/util/documentation.go

    	if trimmedText == "" {
    		return ""
    	}
    
    	const indent = `  `
    	inLines := strings.Split(trimmedText, "\n")
    	outLines := make([]string, 0, len(inLines))
    
    	for _, line := range inLines {
    		outLines = append(outLines, indent+strings.TrimSpace(line))
    	}
    
    	return strings.Join(outLines, "\n")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/role/admin_role_details.jsp

                                                                data-dismiss="modal">
                                                            <la:message key="labels.crud_button_cancel"/>
                                                        </button>
                                                        <button type="submit" class="btn btn-outline-light"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  7. src/internal/types/errors/generrordocs.go

    	"log"
    	"os"
    	"path"
    	"strings"
    	"text/template"
    
    	. "go/types"
    )
    
    func main() {
    	if len(os.Args) != 2 {
    		log.Fatal("missing argument: generrordocs <dir>")
    	}
    	outDir := os.Args[1]
    	if err := os.MkdirAll(outDir, 0755); err != nil {
    		log.Fatal("unable to create output directory: %s", err)
    	}
    	walkCodes(func(name string, vs *ast.ValueSpec) {
    		// ignore unused errors
    		if name == "_" {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:14:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // completes.
    //
    // The first two differences can easily be handled by straightforward
    // adaptation of the concept called "R(t)" in the original paper and
    // "virtual time" in the implementation outline. In that
    // implementation outline, the notation now() is used to mean reading
    // the virtual clock. In the original paper’s terms, "R(t)" is the
    // number of "rounds" that have been completed at real time t ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/cmd/covdata/doc.go

    	$
    
    5. Merge profiles together:
    
    	$ go tool covdata merge -i=indir1,indir2 -o=outdir -modpaths=github.com/go-delve/delve
    	$
    
    6. Subtract one profile from another
    
    	$ go tool covdata subtract -i=indir1,indir2 -o=outdir
    	$
    
    7. Intersect profiles
    
    	$ go tool covdata intersect -i=indir1,indir2 -o=outdir
    	$
    
    8. Dump a profile for debugging purposes.
    
    	$ go tool covdata debugdump -i=indir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/common/admin/crud/buttons.jsp

    					</p>
    				</div>
    				<div class="modal-footer justify-content-between">
    					<button type="button" class="btn btn-outline-light"
    						data-dismiss="modal">
    						<la:message key="labels.crud_button_cancel" />
    					</button>
    					<button type="submit" class="btn btn-outline-light"
    						name="delete"
    						value="<la:message key="labels.crud_button_delete" />">
    						<em class="fa fa-trash">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 10 12:37:20 UTC 2020
    - 2.7K bytes
    - Viewed (0)
Back to top