Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hasChangingContent (0.24 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileCollectionTest.groovy

            producer.visitProducerTasks(action)
    
            then:
            producer.known
            0 * action._
    
            expect:
            !elements.calculateExecutionTimeValue().hasChangingContent()
        }
    
        void elementsProviderHasSameDependenciesAsThis() {
            def collection = new TestFileCollectionWithDependency(dependency)
            def action = Mock(Action)
            def task = Mock(TaskInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

            }
    
            /**
             * A fixed value may have changing contents. For example, a task output file whose location is known at configuration time.
             */
            public boolean hasChangingContent() {
                return false;
            }
    
            public T getFixedValue() throws IllegalStateException {
                throw new IllegalStateException();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

                        return ExecutionTimeValue.missing();
                    }
                    if (value.isChangingValue()) {
                        fixed = false;
                    } else if (value.hasChangingContent()) {
                        changingContent = true;
                    }
                }
    
                if (fixed) {
                    return getFixedExecutionTimeValue(values, changingContent);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

                        return ExecutionTimeValue.missing();
                    }
                    if (value.isChangingValue()) {
                        fixed = false;
                    } else if (value.hasChangingContent()) {
                        changingContent = true;
                    }
                }
                if (fixed) {
                    SideEffectBuilder<? super Map<K, V>> sideEffectBuilder = SideEffect.builder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top