Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,252 for Capget (0.11 sec)

  1. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"name":                     "name is the name of the resource in question.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v1/generated.proto

    // each of the pods of the current scale target(e.g. CPU or memory). The values will be
    // averaged together before being compared to the target. Such metrics are built into
    // Kubernetes, and have special scaling options on top of those available to
    // normal per-pod metrics using the "pods" source. Only one "target" type
    // should be set.
    message ContainerResourceMetricSource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v1/generated.proto

    // each of the pods of the current scale target(e.g. CPU or memory). The values will be
    // averaged together before being compared to the target. Such metrics are built into
    // Kubernetes, and have special scaling options on top of those available to
    // normal per-pod metrics using the "pods" source. Only one "target" type
    // should be set.
    message ContainerResourceMetricSource {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/types.go

    type ObjectMetricSource struct {
    	// target is the described Kubernetes object.
    	Target CrossVersionObjectReference `json:"target" protobuf:"bytes,1,name=target"`
    
    	// metricName is the name of the metric in question.
    	MetricName string `json:"metricName" protobuf:"bytes,2,name=metricName"`
    
    	// targetValue is the target 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
    - 27.8K bytes
    - Viewed (0)
  5. internal/event/target/nsq.go

    func (target *NSQTarget) Name() string {
    	return target.ID().String()
    }
    
    // Store returns any underlying store if set.
    func (target *NSQTarget) Store() event.TargetStore {
    	return target.store
    }
    
    // IsActive - Return true if target is up and active
    func (target *NSQTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    	return target.isActive()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            Contributor target = new Contributor();
            target.setName(source.getName().getOrNull());
            target.setEmail(source.getEmail().getOrNull());
            target.setUrl(source.getUrl().getOrNull());
            target.setOrganization(source.getOrganization().getOrNull());
            target.setOrganizationUrl(source.getOrganizationUrl().getOrNull());
            target.setRoles(new ArrayList<>(source.getRoles().get()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/ProgressLogEventGeneratorTest.groovy

            0 * target._
        }
    
        def ignoresOperationsWithNoLogHeaderDefinedWhenInDeferredMode() {
            ProgressLogEventGenerator generator = new ProgressLogEventGenerator(target)
    
            when:
            generator.onOutput(startWithHeader(''))
    
            then:
            0 * target._
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/ant/AntTarget.java

         */
        @Internal
        public Target getTarget() {
            return target;
        }
    
        /**
         * Sets the Ant target to execute.
         */
        public void setTarget(Target target) {
            this.target = target;
        }
    
        /**
         * Returns the Ant project base directory to use when executing the target.
         */
        @Internal
        public File getBaseDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. internal/event/target/amqp.go

    	headers["minio-event"] = eventData.EventName.String()
    
    	if err = ch.ExchangeDeclare(target.args.Exchange, target.args.ExchangeType, target.args.Durable,
    		target.args.AutoDeleted, target.args.Internal, target.args.NoWait, nil); err != nil {
    		return err
    	}
    
    	if err = ch.Publish(target.args.Exchange, target.args.RoutingKey, target.args.Mandatory,
    		target.args.Immediate, amqp091.Publishing{
    			Headers:      headers,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

            target.assertProductNameEquals(expectedProductName)
            target.assertSupportedArchitectures(archName == 'aarch64' ? MachineArchitecture.ARM64 : MachineArchitecture.X86_64)
            assert target.name == expectedProductName
            assert target.productReference.path == staticLib("build/lib/main/debug/$expectedBinaryName").absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top