Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,928 for CHANGED (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/fix/cftype.go

    					if r := badNils[f.Interface()]; r != nil {
    						f.Set(reflect.ValueOf(r))
    						changed = true
    					}
    				}
    				if f.Type() == exprSliceType {
    					for j := 0; j < f.Len(); j++ {
    						e := f.Index(j)
    						if r := badNils[e.Interface()]; r != nil {
    							e.Set(reflect.ValueOf(r))
    							changed = true
    						}
    					}
    				}
    			}
    		})
    	}
    
    	// step 3: fix up invalid casts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:25:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            then:
            outputContains '2!'
            outputContains "because the set of system properties prefixed by '${SYSTEM_PROJECT_PROPERTIES_PREFIX}' has changed."
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "help", "-D${SYSTEM_PROJECT_PROPERTIES_PREFIX}gradleProp=2", "-D${SYSTEM_PROJECT_PROPERTIES_PREFIX}unusedProp=2"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

                create("foo") {
                    other = "changed"
                }
            }
            realize()
    
            then:
            realizeChild("foo").other == "changed"
        }
    
        def "can register config rule and type for item"() {
            when:
            mutateWithoutDelegation {
                it.create("foo", specialItemClass) {
                    other = "changed"
                }
            }
            realize()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalTaskWithNormalizedInputsIntegrationTest.groovy

            def inputs = folderNames().collect { file("${it}/input.txt").createFile() }
            def modifiedInput = inputs[1]
    
            buildFile << incrementalTaskWithNameOnlyInputFiles(inputs)
            run INCREMENTAL_TASK_NAME, "--info"
    
            when:
            modifiedInput.text = "changed"
            println "Modified ${modifiedInput} to '${modifiedInput.text}'!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

            outputs = new CompilationOutputsFixture(objectFileDir)
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles changed source file only"() {
            given:
            outputs.snapshot { run "mainExecutable" }
    
            when:
            sourceFile << """
    // Changed source file
    """
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped compileTask
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  9. android/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
    - 29.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalInvalidatableVirtualFileSystemConnection.java

         *
         * <p>The call is synchronous, i.e. the method ensures that the changed paths are taken into account
         * by the daemon after it returned. This ensures that for every build started
         * after this method has been called knows about the changed paths.
         *
         * <p>If the version of Gradle does not support virtual file system retention (i.e. &lt; 6.1),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top