Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 101 for finalizer (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ----
    signing.gnupg.executable=gpg2
    ----
    ==== `mustRunAfter` constraints no longer violated by `finalizedBy` dependencies
    
    In previous Gradle versions, `mustRunAfter` constraints between regular tasks and finalizer task dependencies would not be honored.
    
    For a concrete example, consider the following task graph definition:
    
    [source,kotlin]
    ----
    tasks {
        register("dockerTest") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    	logger := klog.FromContext(ctx)
    	for _, pod := range claimedPods {
    		if !includeDeletedTerminal && podutil.IsPodTerminal(pod) && pod.DeletionTimestamp != nil {
    			// This Pod has a finalizer or is already scheduled for deletion from the
    			// store by the kubelet or the Pod GC. The DS controller doesn't have
    			// anything else to do with it.
    			continue
    		}
    		nodeName, err := util.GetTargetNodeName(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            then:
            0 * _
    
            and:
            value == someValue()
        }
    
        def "replaces provider with fixed value when value finalized after value implicitly finalized but not read yet"() {
            def property = propertyWithNoValue()
            def function = Mock(Callable)
            def provider = new DefaultProvider<T>(function)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Do not remove the "batch.kubernetes.io/job-tracking" finalizer from a Pod, in a corner
      case scenario, when the Pod is controlled by an API object which is not a batch Job
      (e.g. when the Pod is controlled by a custom CRD). ([#124798](https://github.com/kubernetes/kubernetes/pull/124798), [@mimowo](https://github.com/mimowo)) [SIG Apps and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            0 * closure._
            1 * fileResolver.resolve('a') >> file1
            1 * fileResolver.resolve('b') >> file2
            0 * fileResolver._
        }
    
        def "can finalize when already finalized"() {
            given:
            def file = new File('one')
            collection.from('a')
    
            when:
            collection.finalizeValue()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            ModelNode.State.Initialized     | ModelActionRole.Initialize.name()
            ModelNode.State.Mutated         | ModelActionRole.Mutate.name()
            ModelNode.State.Finalized       | ModelActionRole.Finalize.name()
            ModelNode.State.SelfClosed      | ModelActionRole.Validate.name()
            ModelNode.State.GraphClosed     | ModelActionRole.Validate.name()
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            assertHasProducer(property, task1, task2, task3)
    
            property.attachProducer(owner(producer))
            assertHasProducer(property, producer)
        }
    
        def "cannot set to empty list after value finalized"() {
            given:
            def property = property()
            property.set(someValue())
            property.finalizeValue()
    
            when:
            property.empty()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 62.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
Back to top