Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for disallowUnsafeRead (3.21 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

         */
        ValueProducer getProducer();
    
        boolean calculatePresence(ValueConsumer consumer);
    
        enum ValueConsumer {
            DisallowUnsafeRead, IgnoreUnsafeRead
        }
    
        /**
         * Carries information about the producer of a value.
         */
        interface ValueProducer {
            NoProducer NO_PRODUCER = new NoProducer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            def a = property()
            def b = property()
            def c = elementProperty()
            def property = property()
            property.disallowUnsafeRead()
    
            property.addAll(a)
    
            a.addAll(b)
            a.attachOwner(owner(), displayName("<a>"))
    
            b.attachOwner(owner(), displayName("<b>"))
    
            property.add(c)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            def a = property()
            def b = property()
            def c = valueProperty()
            def property = property()
            property.disallowUnsafeRead()
    
            property.putAll(a)
    
            a.putAll(b)
            a.attachOwner(owner(), displayName("<a>"))
    
            b.attachOwner(owner(), displayName("<b>"))
    
            property.put("c", c)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
Back to top