Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WithProperty (0.2 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-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)
  3. 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