Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,928 for CHANGED (0.23 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/PropertiesTransformerTest.groovy

            Properties original = props(removed:'value', changed:'old')
            when:
            def result = transformer.transform(original)
            then:
            action.execute(_) >> { Properties props ->
                props.remove('removed')
                props.changed = 'new'
                props.added = 'value'
            }
            props(changed:'new', added:'value') == result
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

            then:
            assert classloader.loadClass('Thing').getDeclaredFields()*.name == ["CHANGED"]
        }
    
        @UnsupportedWithConfigurationCache(because = "taskGraph.afterTask")
        def "new build should be triggered when input files to tasks are changed after each task has been executed, but before the build has completed (changed: #changingInput)"() {
            given:
            ['a', 'b', 'c', 'd'].each { file(it).createDir() }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/meta/conditions.go

    		} else {
    			existingCondition.LastTransitionTime = metav1.NewTime(time.Now())
    		}
    		changed = true
    	}
    
    	if existingCondition.Reason != newCondition.Reason {
    		existingCondition.Reason = newCondition.Reason
    		changed = true
    	}
    	if existingCondition.Message != newCondition.Message {
    		existingCondition.Message = newCondition.Message
    		changed = true
    	}
    	if existingCondition.ObservedGeneration != newCondition.ObservedGeneration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 22 01:13:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            def project3 = javaLibrary(mavenRepo.module("changed.group", "changed-artifact-id", "changed"))
    
            def extra = """
    project(":project3") {
        publishing {
            publications.maven {
                groupId "changed.group"
                artifactId "changed-artifact-id"
                version "changed"
            }
        }
    }
    """
            if (mapping) {
                extra = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def e = thrown(IllegalStateException)
            e.message == 'The value for this property is final and cannot be changed any further.'
    
            when:
            setToNull(property)
    
            then:
            def e2 = thrown(IllegalStateException)
            e2.message == 'The value for this property is final and cannot be changed any further.'
    
            when:
            property.value(someValue())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/TypedDomainObjectContainerWrapperTest.groovy

            container.getByName("created2").value == "changed"
            container.getByName("created3").value == "actioned"
        }
    
        def "can create and configure via DSL"() {
            when:
            def container = parent.containerWithType(CreatedSubType)
    
            and:
            container.configure {
                createdOne
                createdTwo {
                    value = "changed"
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/fuse.go

    				changed = fuseIntegerComparisons(b) || changed
    			}
    			if typ&fuseTypePlain != 0 {
    				changed = fuseBlockPlain(b) || changed
    			}
    			if typ&fuseTypeShortCircuit != 0 {
    				changed = shortcircuitBlock(b) || changed
    			}
    		}
    
    		if typ&fuseTypeBranchRedirect != 0 {
    			changed = fuseBranchRedirect(f) || changed
    		}
    		if changed {
    			f.invalidateCFG()
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. src/cmd/internal/pkgpath/pkgpath.go

    		case c < 0x80:
    			enc = fmt.Sprintf("..z%02x", c)
    		case c < 0x10000:
    			enc = fmt.Sprintf("..u%04x", c)
    		default:
    			enc = fmt.Sprintf("..U%08x", c)
    		}
    		bsl.WriteString(enc)
    		changed = true
    	}
    	if !changed {
    		return ppath
    	}
    	return bsl.String()
    }
    
    // v3UnderscoreCodes maps from a character that supports an underscore
    // encoding to the underscore encoding character.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOMODCACHE", Value: cfg.GOMODCACHE, Changed: cfg.GOMODCACHEChanged},
    		{Name: "GONOPROXY", Value: cfg.GONOPROXY, Changed: cfg.GONOPROXYChanged},
    		{Name: "GONOSUMDB", Value: cfg.GONOSUMDB, Changed: cfg.GONOSUMDBChanged},
    		{Name: "GOOS", Value: cfg.Goos, Changed: cfg.Goos != runtime.GOOS},
    		{Name: "GOPATH", Value: cfg.BuildContext.GOPATH, Changed: cfg.GOPATHChanged},
    		{Name: "GOPRIVATE", Value: cfg.GOPRIVATE},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/FilePropertyContainer.java

        private boolean changed;
        private int unnamedPropertyCounter;
    
        private FilePropertyContainer() {
        }
    
        public static <T extends TaskFilePropertyBuilder & TaskPropertyRegistration> FilePropertyContainer<T> create() {
            return new FilePropertyContainer<T>();
        }
    
        public void add(T property) {
            properties.add(property);
            changed = true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top