Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for withProperty (0.23 sec)

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

          + timeSeries.standardOptions.withUnit('Bps')
          + timeSeries.standardOptions.withOverrides([
            fieldOverride.byQuery.new('B')
            + fieldOverride.byQuery.withProperty('custom.axisPlacement', 'right')
            + fieldOverride.byQuery.withProperty('unit', 'c/s'),
          ])
        ,
    
        durationQuantile(title, targets, desc=''):
          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('s')
    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-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

        }
    
        def "out-of-date when any input property value changed"() {
            when:
            execute(builder.withProperty("prop", "original value").build())
            def inputPropertiesChanged = builder.withProperty("prop", "new value").build()
    
            then:
            outOfDate(inputPropertiesChanged, "Value of input property 'prop' has changed for ${inputPropertiesChanged.displayName}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/SystemPropertiesIntegrationTest.groovy

                    }
                }
            }
    
            then:
            assert System.getProperty(presetPropertyName) == "original"
            assert System.getProperty(notsetPropertyName) == null
        }
    
        def "withProperty and withProperties are never run concurrently"() {
            final int threadCount = 100
            def id = UUID.randomUUID().toString()
    
            when:
            async {
                threadCount.times { i ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

            @Nested
            private SpecificProperty nestedProperty = new SpecificProperty();
            public int traversedOutputsCount;
    
            public SpecificProperty getNestedProperty() {
                traversedOutputsCount++;
                return nestedProperty;
            }
        }
    
        public interface WithProperty<T extends PropertyContainer<?>> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/MutableUnitOfWorkBuilder.groovy

        }
    
        MutableUnitOfWorkBuilder withImplementation(ImplementationSnapshot implementation) {
            this.implementation = implementation
            return this
        }
    
        MutableUnitOfWorkBuilder withProperty(String name, Object value) {
            inputProperties.put(name, value)
            return this
        }
    
        MutableUnitOfWorkBuilder withValidator(Consumer<WorkValidationContext> validator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top