Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for desc2 (0.11 sec)

  1. manifests/addons/dashboards/lib/panels.libsonnet

          + custom.withGradientMode('hue')
          + if std.length(desc) > 0 then
            timeSeries.panelOptions.withDescription(desc)
          else {},
    
        simple(title, targets, desc=''):
          self.base(title, targets, desc)
          + options.legend.withCalcs([])
          + options.legend.withDisplayMode('list'),
    
        short(title, targets, desc=''):
          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('short')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectLayoutIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheProjectLayoutIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "buildDirectory #desc derived from task provider is compatible"() {
            given:
            buildFile """
                abstract class Producer extends DefaultTask {
    
                    @OutputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. cmd/handler-utils.go

    			Code:           "XMinioStorageVersionMismatch",
    			Description:    desc,
    			HTTPStatusCode: http.StatusUpgradeRequired,
    		}, r.URL)
    	case strings.HasPrefix(r.URL.Path, adminPathPrefix):
    		var desc string
    		version := extractAPIVersion(r)
    		switch version {
    		case "v1", madmin.AdminAPIVersionV2:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/tfl_quantizer.cc

    #include "tensorflow/lite/c/c_api_types.h"
    
    using llvm::cl::opt;
    
    // NOLINTNEXTLINE
    static opt<std::string> inputFileName(llvm::cl::Positional,
                                          llvm::cl::desc("<input file>"),
                                          llvm::cl::init("-"));
    
    namespace mlir {
    namespace {
    
    TfLiteStatus QuantizeAnnotatedModel(llvm::StringRef buffer,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    //
    //msgp:ignore minioNodeCollector
    type minioNodeCollector struct {
    	metricsGroups []*MetricsGroupV2
    	desc          *prometheus.Desc
    }
    
    // Describe sends the super-set of all possible descriptors of metrics
    func (c *minioNodeCollector) Describe(ch chan<- *prometheus.Desc) {
    	ch <- c.desc
    }
    
    // populateAndPublish populates and then publishes the metrics generated by the generator function.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/simulation/traffic.go

    		if !empty(c.GetFilterChainMatch()) {
    			anySet = true
    			break
    		}
    	}
    	if !anySet {
    		log.Debugf("%v: none set, skipping", desc)
    		return chains
    	}
    	for i, c := range chains {
    		if match(c.GetFilterChainMatch()) {
    			log.Debugf("%v: matched chain %v/%v", desc, i, c.GetName())
    			res = append(res, c)
    		}
    	}
    	// Return all matching filter chains
    	if len(res) > 0 {
    		return res
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	actual := []*cRecord{}
    	for _, cStatus := range runtime.Containers {
    		actual = append(actual, &cRecord{name: cStatus.Metadata.Name, attempt: cStatus.Metadata.Attempt, state: cStatus.State})
    	}
    	sort.Sort(cRecordList(expected))
    	sort.Sort(cRecordList(actual))
    	assert.Equal(t, expected, actual, desc)
    }
    
    func TestNewKubeRuntimeManager(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

      Option<std::string> force_data_format{
          *this, "force-data-format",
          llvm::cl::desc("Force data format for all layout sensitive ops")};
      Option<bool> skip_fold_transpose_in_ops{
          *this, "skip-fold-transpose-in-ops",
          llvm::cl::desc("Skip folding transpose operands in Ops which can support "
                         "different layouts.")};
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

    static llvm::cl::OptionCategory clOptionsCategory(DEBUG_TYPE " options");
    
    // NOLINTNEXTLINE
    static llvm::cl::list<std::string> cl_pass_list(
        "graph-passes", llvm::cl::value_desc("list"),
        llvm::cl::desc("comma separated list of GraphOptimizationPass to run."),
        llvm::cl::CommaSeparated, llvm::cl::cat(clOptionsCategory));
    
    class GraphOptByNamePass : public GraphOptPass {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top