Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 384 for changedTo (0.41 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

                )
                withProblemsWithStackTraceCount(0)
            }
        }
    
        def "task with type declared in Groovy script is up-to-date when no inputs have changed"() {
            given:
            taskTypeWithOutputFileProperty()
            buildFile << """
                tasks.register("a", FileProducer) {
                    output = layout.buildDirectory.file("out.txt")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/endpointshards.go

    	// Check if ServiceAccounts have changed. We should do a full push if they have changed.
    	saUpdated := updateShardServiceAccount(ep, hostname)
    
    	// For existing endpoints, we need to do full push if service accounts change.
    	if saUpdated && pushType != FullPush {
    		// Avoid extra logging if already a full push
    		log.Infof("Full push, service accounts changed, %v", hostname)
    		pushType = FullPush
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInputListenerLifecycleIntegrationTest.groovy

            when:
            configurationCacheRun()
            configurationCacheRun("-D$IGNORE_INPUTS_PROPERTY=true")
    
            then:
            outputContains("the set of ignored configuration inputs has changed")
        }
    
        private static final String IGNORE_INPUTS_PROPERTY = StartParameterBuildOptions.ConfigurationCacheIgnoreInputsInTaskGraphSerialization.PROPERTY_NAME
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

             */
            fun exception(): Builder
    
            fun documentationSection(documentationSection: DocumentationSection): Builder
    
            /**
             * Allows the default location to be changed. The function is called by `build()`
             */
            fun mapLocation(mapper: (PropertyTrace) -> PropertyTrace): Builder
    
            fun build(): PropertyProblem
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ScriptChangeFixture.groovy

            def scriptPath = relativePathOf(scriptFile, projectDir)
            def scriptDesc = scriptPath.contains('init') ? 'init script' : 'file'
            return "configuration cache cannot be reused because $scriptDesc '$scriptPath' has changed."
        }
    
        void setup() {
            scriptFile.text = "println(\"$expectedOutputBeforeChange\")"
        }
    
        void applyChange() {
            scriptFile.text = "println(\"$expectedOutputAfterChange\")"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. internal/grid/handlers_string.go

    package grid
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[handlerInvalid-0]
    	_ = x[HandlerLockLock-1]
    	_ = x[HandlerLockRLock-2]
    	_ = x[HandlerLockUnlock-3]
    	_ = x[HandlerLockRUnlock-4]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r23/StandardStreamsCrossVersionSpec.groovy

            output.toString().contains("lifecycle logging")
            output.toString().contains("quiet logging")
            if (targetVersion.baseVersion >= GradleVersion.version('4.7')) {
                // Changed handling of error log messages
                output.toString().contains("error logging")
            } else {
                error.toString().contains("error logging")
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu_arm64_hwcap.go

    // license that can be found in the LICENSE file.
    
    //go:build arm64 && linux
    
    package cpu
    
    import _ "unsafe" // for linkname
    
    // HWCap may be initialized by archauxv and
    // should not be changed after it was initialized.
    //
    // Other widely used packages
    // access HWCap using linkname as well, most notably:
    //   - github.com/klauspost/cpuid/v2
    //
    // Do not remove or change the type signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. hack/logcheck.conf

    # for example k8s.io/cmd/kube-scheduler/app/config/config.go.
    #
    # By default, structured logging call parameters are checked, but usage of
    # those calls is not required. That is changed on a per-file basis.
    #
    # Remember to clean the golangci-lint cache when changing the configuration and
    # running the verify-golangci-lint.sh script multiple times, otherwise
    # golangci-lint will report stale results:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller.go

    	// only when services have changed - otherwise, just push endpoint updates.
    	var addedSvcs, deletedSvcs, updatedSvcs, unchangedSvcs []*model.Service
    	switch event {
    	case model.EventUpdate:
    		addedSvcs, deletedSvcs, updatedSvcs, unchangedSvcs = servicesDiff(s.services.getServices(key), cs)
    		oldServiceEntry := old.Spec.(*networking.ServiceEntry)
    		// Also check if target ports are changed since they are not included in `model.Service`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top