Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for desc3 (0.22 sec)

  1. cmd/metrics-resource.go

    type minioResourceCollector struct {
    	metricsGroups []*MetricsGroupV2
    	desc          *prometheus.Desc
    }
    
    // Describe sends the super-set of all possible descriptors of metrics
    func (c *minioResourceCollector) Describe(ch chan<- *prometheus.Desc) {
    	ch <- c.desc
    }
    
    // Collect is called by the Prometheus registry when collecting metrics.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. pkg/proxy/metrics/metrics.go

    type nfacctMetricCollector struct {
    	metrics.BaseStableCollector
    	client      nfacct.Interface
    	counter     string
    	description *metrics.Desc
    }
    
    // DescribeWithStability implements the metrics.StableCollector interface.
    func (n *nfacctMetricCollector) DescribeWithStability(ch chan<- *metrics.Desc) {
    	ch <- n.description
    }
    
    // CollectWithStability implements the metrics.StableCollector interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/testing/fstest/testfs.go

    		t.errorf("%s: failed TestReader:\n\t%s", file, strings.ReplaceAll(err.Error(), "\n", "\n\t"))
    	}
    }
    
    func (t *fsTester) checkFileRead(file, desc string, data1, data2 []byte) {
    	if string(data1) != string(data2) {
    		t.errorf("%s: %s: different data returned\n\t%q\n\t%q", file, desc, data1, data2)
    		return
    	}
    }
    
    // checkBadPath checks that various invalid forms of file's name cannot be opened using t.fsys.Open.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

      }
    
      void runOnOperation() override;
    
     private:
      Option<OpSet> op_set_{
          *this, "target-opset", llvm::cl::init(OpSet::UNIFORM_QUANTIZED),
          llvm::cl::desc("Choose target opset."),
          llvm::cl::values(
              clEnumValN(OpSet::TF, "TF",
                         "Uses TF ops that mimic quantization behavior"),
              clEnumValN(OpSet::XLA, "XLA", "Uses TF XLA ops"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. pkg/kubelet/logs/container_log_manager_test.go

    	assert.Len(t, logs, 2)
    	assert.Equal(t, testLogs[0], filepath.Join(dir, logs[0].Name()))
    	assert.Equal(t, testLogs[3], filepath.Join(dir, logs[1].Name()))
    }
    
    func TestRemoveExcessLog(t *testing.T) {
    	for desc, test := range map[string]struct {
    		max    int
    		expect []string
    	}{
    		"MaxFiles equal to 2": {
    			max:    2,
    			expect: []string{},
    		},
    		"MaxFiles more than 2": {
    			max:    3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/runtime/metrics_test.go

    	// Set up the set of metrics marked cumulative.
    	descs := metrics.All()
    	var samples [2][]metrics.Sample
    	samples[0] = make([]metrics.Sample, len(descs))
    	samples[1] = make([]metrics.Sample, len(descs))
    	total := 0
    	for i := range samples[0] {
    		if !descs[i].Cumulative {
    			continue
    		}
    		samples[0][total].Name = descs[i].Name
    		total++
    	}
    	samples[0] = samples[0][:total]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. src/go/types/check.go

    	// this is a sufficiently bounded process.
    	for i := top; i < len(check.delayed); i++ {
    		a := &check.delayed[i]
    		if check.conf._Trace {
    			if a.desc != nil {
    				check.trace(a.desc.pos.Pos(), "-- "+a.desc.format, a.desc.args...)
    			} else {
    				check.trace(nopos, "-- delayed %p", a.f)
    			}
    		}
    		a.f() // may append to check.delayed
    		if check.conf._Trace {
    			fmt.Println()
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. chainable_api.go

    }
    
    // Order specify order when retrieving records from database
    //
    //	db.Order("name DESC")
    //	db.Order(clause.OrderByColumn{Column: clause.Column{Name: "name"}, Desc: true})
    //	db.Order(clause.OrderBy{Columns: []clause.OrderByColumn{
    //		{Column: clause.Column{Name: "name"}, Desc: true},
    //		{Column: clause.Column{Name: "age"}, Desc: true},
    //	}})
    func (db *DB) Order(value interface{}) (tx *DB) {
    	tx = db.getInstance()
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	desc := "The port on which to serve HTTPS with authentication and authorization."
    	if s.Required {
    		desc += " It cannot be switched off with 0."
    	} else {
    		desc += " If 0, don't serve HTTPS at all."
    	}
    	fs.IntVar(&s.BindPort, "secure-port", s.BindPort, desc)
    
    	fs.BoolVar(&s.DisableHTTP2Serving, "disable-http2-serving", s.DisableHTTP2Serving,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check.go

    	// this is a sufficiently bounded process.
    	for i := top; i < len(check.delayed); i++ {
    		a := &check.delayed[i]
    		if check.conf.Trace {
    			if a.desc != nil {
    				check.trace(a.desc.pos.Pos(), "-- "+a.desc.format, a.desc.args...)
    			} else {
    				check.trace(nopos, "-- delayed %p", a.f)
    			}
    		}
    		a.f() // may append to check.delayed
    		if check.conf.Trace {
    			fmt.Println()
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top