Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for withTargets (0.44 sec)

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

        local custom = timeSeries.fieldConfig.defaults.custom,
        local options = timeSeries.options,
    
        base(title, targets, desc=''):
          timeSeries.new(title)
          + timeSeries.queryOptions.withTargets(targets)
          + timeSeries.queryOptions.withInterval('5s')
          + options.legend.withDisplayMode('table')
          + options.legend.withCalcs([
            'last',
            'max',
          ])
    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/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultProjectDependencyMetadataTest.groovy

            expect:
            dep.withTarget(selector).is(dep)
        }
    
        def "delegates when different target requested"() {
            def requested = Stub(ComponentSelector)
            def delegateCopy = Stub(DependencyMetadata)
    
            given:
            target.withTarget(requested) >> delegateCopy
    
            expect:
            dep.withTarget(requested).is(delegateCopy)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultProjectDependencyMetadata.java

        public List<ExcludeMetadata> getExcludes() {
            return Collections.emptyList();
        }
    
        @Override
        public DependencyMetadata withTarget(ComponentSelector target) {
            if (target.equals(selector)) {
                return this;
            }
            return delegate.withTarget(target);
        }
    
        @Override
        public DependencyMetadata withTargetAndArtifacts(ComponentSelector target, List<IvyArtifactName> artifacts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DslOriginDependencyMetadataWrapper.java

        @Override
        public LocalOriginDependencyMetadata withTarget(ComponentSelector target) {
            return new DslOriginDependencyMetadataWrapper(delegate.withTarget(target), source);
        }
    
        @Override
        public LocalOriginDependencyMetadata withTargetAndArtifacts(ComponentSelector target, List<IvyArtifactName> artifacts) {
            return new DslOriginDependencyMetadataWrapper(delegate.withTarget(target), source, artifacts);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 19:31:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta1/objectmetricstatus.go

    	return &ObjectMetricStatusApplyConfiguration{}
    }
    
    // WithTarget sets the Target field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Target field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/externalmetricsource.go

    	b.Metric = value
    	return b
    }
    
    // WithTarget sets the Target field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Target field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/resourcemetricsource.go

    	b.Name = &value
    	return b
    }
    
    // WithTarget sets the Target field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Target field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DelegatingDependencyMetadata.java

        }
    
        @Override
        public List<IvyArtifactName> getArtifacts() {
            return delegate.getArtifacts();
        }
    
        @Override
        public DependencyMetadata withTarget(ComponentSelector target) {
            return delegate.withTarget(target);
        }
    
        @Override
        public DependencyMetadata withTargetAndArtifacts(ComponentSelector target, List<IvyArtifactName> artifacts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta2/externalmetricsource.go

    	b.Metric = value
    	return b
    }
    
    // WithTarget sets the Target field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Target field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta2/podsmetricsource.go

    	b.Metric = value
    	return b
    }
    
    // WithTarget sets the Target field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Target field is set to the value of the last call.
    func (b *PodsMetricSourceApplyConfiguration) WithTarget(value *MetricTargetApplyConfiguration) *PodsMetricSourceApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top