Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for changedTo (0.57 sec)

  1. 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)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            e.message == 'The value for this property is final and cannot be changed any further.'
    
            when:
            property.add(Stub(PropertyInternal))
    
            then:
            def e2 = thrown(IllegalStateException)
            e2.message == 'The value for this property is final and cannot be changed any further.'
        }
    
        def "cannot add element after value finalized implicitly"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def e = thrown(IllegalStateException)
            e.message == 'The value for <display> is final and cannot be changed any further.'
    
            when:
            collection.setFrom()
    
            then:
            def e2 = thrown(IllegalStateException)
            e2.message == 'The value for <display> is final and cannot be changed any further.'
    
            when:
            collection.setFrom(['some', 'more'])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            withProjectConfig("b") {
                outputFileName = "new"
                outputFileContent = "new"
            }
            succeeds(":a:resolve")
    
            then: // directory content has changed (file contents changed)
            result.assertTasksNotSkipped(":b:producer", ":a:resolve")
            transformed("b-dir")
            outputContains("result = [b-dir.green, c-dir.green]")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        }
    
        def "cannot set to empty map after changes disallowed"() {
            given:
            property.set(someValue())
            property.disallowChanges()
            when:
            property.empty()
            then:
            def e = thrown IllegalStateException
            e.message == 'The value for this property cannot be changed any further.'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    		//   TODO(#27899): Try to resolve ambiguous import errors automatically.
    		upgrades := r.findAndUpgradeImports(ctx, queries)
    		if changed := r.applyUpgrades(ctx, upgrades); changed {
    			continue
    		}
    
    		r.findMissingWildcards(ctx)
    		if changed := r.resolveQueries(ctx, r.wildcardQueries); changed {
    			continue
    		}
    
    		break
    	}
    
    	r.checkWildcardVersions(ctx)
    
    	var pkgPatterns []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    					reg, _ := state.f.getHome(v.ID).(*Register)
    					c := state.processValue(v, slots, reg)
    					changed = changed || c
    				}
    
    				if state.loggingLevel > 1 {
    					state.logf("Block %v done, locs:\n%v", b, state.stateString(state.currentState))
    				}
    
    				locs.relevant = locs.relevant || changed
    				if !changed {
    					locs.endState = startState
    				} else {
    					for _, id := range state.changedSlots.contents() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    	}
    	testCases := []struct {
    		orig, new []string
    		changed   bool
    	}{
    		{
    			orig:    []string{"v1/pod/foo"},
    			new:     []string{},
    			changed: true,
    		},
    		{
    			orig:    []string{"v1/pod/foo"},
    			new:     []string{"v1/pod/foo"},
    			changed: false,
    		},
    		{
    			orig:    []string{"v1/pod/foo"},
    			new:     []string{"v1/pod/bar"},
    			changed: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `getOutputFile()` was changed to return a `Property`.
     * `setOutputFile(File)` was removed. Use `Property.set()` instead.
     * `setOutputFile(Provider)` was removed. Use `Property.set()` instead.
     * `getTargetPlatform()` was changed to return a `Property`.
     * `setTargetPlatform(NativePlatform)` was removed. Use `Property.set()` instead.
     * `getToolChain()` was changed to return a `Property`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            result.assertTaskSkipped(":b:producer")
            outputContains("result = [a.thing, b.thing, a.out, b.out, lib1-6500.jar]")
    
            when:
            configurationCacheRun(":resolve", "-DaContent=changed")
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTaskOrder(":additionalFile", ":resolve")
            result.assertTaskOrder(":a:producer", ":resolve")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
Back to top