Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,932 for changedTo (0.16 sec)

  1. platforms/documentation/docs/src/snippets/tasks/incrementalTask/tests/incrementalTaskChangedProperty.sample.conf

    # tag::cli[]
    # gradle --quiet -PtaskInputProperty=changed incrementalReverse
    # end::cli[]
    
    commands: [{
        executable: gradle
        args: originalInputs incrementalReverse
        flags: --quiet
    }, {
        executable: gradle
        args: incrementalReverse
        flags: "--quiet -PtaskInputProperty=changed"
        expected-output-file: incrementalTaskChangedProperty.out
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 394 bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

                    action = Action { writeText("changed") }
                }
            """
            run 'myTask', '--info'
            then:
            executedAndNotSkipped(':myTask')
            file('build/tmp/myTask/output.txt').text == "changed"
            output.contains "Implementation of input property 'action' has changed for task ':myTask'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

                    File output
    
                    @TaskAction
                    void doStuff(InputChanges changes) {
                        def changed = changes.getFileChanges(input)*.file*.name as List
                        assert changed.contains('child')
                        output.text = changed.join('\\n')
                    }
                }
    
                task myTask(type: MyTask) {
                    input = mkdir(inputDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  4. .github/workflows/pylint-presubmit.yml

          id: get_file_changes
          uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b # v1.2.4
          with:
            output: ' '
        - name: Report list of changed files
          run: |
            echo Changed files: ${{ steps.get_file_changes.outputs.files }}
        - name: Set up Python 3.9
          uses: actions/setup-python@2c3dd9e7e29afd70cc0950079bde6c979d1f69f9 # v4.3.1
          with:
            python-version: "3.9"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:40:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/StandardTable.java

          }
          boolean changed = false;
          Iterator<Map<C, V>> iterator = backingMap.values().iterator();
          while (iterator.hasNext()) {
            Map<C, V> map = iterator.next();
            if (map.keySet().remove(obj)) {
              changed = true;
              if (map.isEmpty()) {
                iterator.remove();
              }
            }
          }
          return changed;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  6. releasenotes/notes/update-envoy-filters-in-place.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 18 06:50:06 UTC 2023
    - 274 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/refs.go

    		props[name] = *populated
    	}
    	if propsChanged {
    		changed = true
    		result.Properties = props
    	}
    	if result.AdditionalProperties != nil && result.AdditionalProperties.Schema != nil {
    		populated, err := populateRefs(schemaOf, visited, result.AdditionalProperties.Schema)
    		if err != nil {
    			return nil, err
    		}
    		if populated != result.AdditionalProperties.Schema {
    			changed = true
    			result.AdditionalProperties.Schema = populated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 17:23:50 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/deadstore.go

    			return
    		}
    		iterations++
    		changed := false
    		for _, b := range f.Blocks {
    			for _, v := range b.Values {
    				changed = visit(v) || changed
    			}
    			// keep the auto if its address reaches a control value
    			for _, c := range b.ControlValues() {
    				if n, ok := addr[c]; ok && !used.Has(n) {
    					used.Add(n)
    					changed = true
    				}
    			}
    		}
    		if !changed {
    			break
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/plugins/IvyPublishPluginTest.groovy

                descriptor.status == "integration"
            }
    
            when:
            project.group = "changed-group"
            project.version = "changed-version"
    
            then:
            with(publishing.publications.test) {
                organisation == "changed-group"
                revision == "changed-version"
            }
        }
    
        def "can configure descriptor"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/internal/DefaultProblemDefinitionReport.groovy

            then:
            pd1 == pd2
            pd1 == pd1
        }
    
        def "Changed label causes equal to be false"() {
    
            when:
            def pd1 = createProblemDefinition()
            def pd2 = createProblemDefinition("otherLabel")
    
            then:
            pd1 != pd2
        }
    
        def "Changed severity causes equal to be false"() {
    
            when:
            def pd1 = createProblemDefinition()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top