Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 158 for cedric (0.09 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                import static org.junit.Assert.*;
    
                public class TextTest {
                    @Test
                    public void testGreeting() {
                        assertEquals("Hello, Cedric", Text.sayHello("cedric"));
                    }
                }
            '''
    
            when:
            run 'test'
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      optional MetricIdentifier metric = 3;
    }
    
    // ObjectMetricStatus indicates the current value of a metric describing a
    // kubernetes object (for example, hits-per-second on an Ingress object).
    message ObjectMetricStatus {
      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 1;
    
      // current contains the current value for the given metric
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2beta2/types_swagger_doc_generated.go

    	"":       "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).",
    	"metric": "metric identifies the target metric by name and selector",
    	"target": "target specifies the target value for the given metric",
    }
    
    func (ExternalMetricSource) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

    }
    
    // ExternalMetricStatus indicates the current value of a global metric
    // not associated with any Kubernetes object.
    message ExternalMetricStatus {
      // metricName is the name of a metric used for autoscaling in
      // metric system.
      optional string metricName = 1;
    
      // metricSelector is used to identify a specific time series
      // within a given metric.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

    // ExternalMetricSource indicates how to scale on a metric not associated with
    // any Kubernetes object (for example length of queue in cloud
    // messaging service, or QPS from loadbalancer running outside of cluster).
    message ExternalMetricSource {
      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 1;
    
      // target specifies the target value for the given metric
      optional MetricTarget target = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2/generated.proto

      optional MetricIdentifier metric = 3;
    }
    
    // ObjectMetricStatus indicates the current value of a metric describing a
    // kubernetes object (for example, hits-per-second on an Ingress object).
    message ObjectMetricStatus {
      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 1;
    
      // current contains the current value for the given metric
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    	"":       "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).",
    	"metric": "metric identifies the target metric by name and selector",
    	"target": "target specifies the target value for the given metric",
    }
    
    func (ExternalMetricSource) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

    // ExternalMetricSource indicates how to scale on a metric not associated with
    // any Kubernetes object (for example length of queue in cloud
    // messaging service, or QPS from loadbalancer running outside of cluster).
    message ExternalMetricSource {
      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 1;
    
      // target specifies the target value for the given metric
      optional MetricTarget target = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// metric identifies the target metric by name and selector
    	Metric MetricIdentifier `json:"metric" protobuf:"bytes,1,name=metric"`
    
    	// current contains the current value for the given metric
    	Current MetricValueStatus `json:"current" protobuf:"bytes,2,name=current"`
    }
    
    // MetricValueStatus holds the current value for a metric
    type MetricValueStatus struct {
    	// value is the current value of the metric (as a quantity).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    	r := &dto.MetricFamily{}
    	r.Name = mf.Name
    	r.Help = mf.Help
    	r.Type = mf.Type
    	r.Metric = make([]*dto.Metric, len(mf.Metric))
    	for i, m := range mf.Metric {
    		r.Metric[i] = deepCopyMetric(m)
    	}
    	return r
    }
    
    func deepCopyMetric(m *dto.Metric) *dto.Metric {
    	r := &dto.Metric{}
    	r.Label = make([]*dto.LabelPair, len(m.Label))
    	for i, lp := range m.Label {
    		r.Label[i] = deepCopyLabelPair(lp)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top