Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,354 for changedTo (0.58 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

    class UpdatingRule implements ComponentMetadataRule {
        public void execute(ComponentMetadataContext context) {
                context.details.status "integration.changed" // verify that 'details' is enhanced
                context.details.statusScheme = ["integration.changed", "milestone.changed", "release.changed"]
                context.details.changing = true
        }
    }
    
    class VerifyingRule implements ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/integTest/groovy/org/gradle/internal/vfs/DefaultExcludesIntegrationTest.groovy

            when:
            run "copyTask"
            then:
            executedAndNotSkipped(":copyTask")
            !copyOfExcludedFile.exists()
    
            when:
            excludedFile.text = "changed"
            run "copyTask"
            then:
            skipped(":copyTask")
        }
    
        def "default excludes are reset if nothing is defined in settings"() {
            settingsFile << addDefaultExclude(EXCLUDED_FILE_NAME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

                                return false;
                            }
                            // Else, something has changed in the include file graph for this source file, so analyse again
                        }
    
                        // Source file has not been compiled before, or its include file graph has changed in some way
                        // Calculate the include file graph for the source file and mark for recompilation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top