Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for finalizers (0.17 sec)

  1. staging/src/k8s.io/api/apps/v1/types.go

    const (
    	// ReplicaSetReplicaFailure is added in a replica set when one of its pods fails to be created
    	// due to insufficient quota, limit ranges, pod security policy, node selectors, etc. or deleted
    	// due to kubelet being down or finalizers are failing.
    	ReplicaSetReplicaFailure ReplicaSetConditionType = "ReplicaFailure"
    )
    
    // ReplicaSetCondition describes the state of a replica set at a certain point.
    type ReplicaSetCondition struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	semrelease(&worldsema)
    	semrelease(&gcsema)
    	// Careful: another GC cycle may start now.
    
    	releasem(mp)
    	mp = nil
    
    	// now that gc is done, kick off finalizer thread if needed
    	if !concurrentSweep {
    		// give the queued finalizers, if any, a chance to run
    		Gosched()
    	}
    }
    
    // gcBgMarkStartWorkers prepares background mark worker goroutines. These
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test-pod",
    					Namespace:       "test-ns",
    					ResourceVersion: "1",
    					Annotations:     map[string]string{"foo": "bar", "whiz": "pop"},
    					Finalizers:      []string{"milo"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:  "container",
    							Image: "newimage",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    		p := pod.DeepCopy()
    		p.ResourceVersion = ""
    		p.Generation = 0
    		p.Status = v1.PodStatus{
    			ResourceClaimStatuses: pod.Status.ResourceClaimStatuses,
    		}
    		p.ManagedFields = nil
    		p.Finalizers = nil
    		return p
    	}
    	return !reflect.DeepEqual(strip(oldPod), strip(newPod))
    }
    
    // Update updates a pod in the active or backoff queue if present. Otherwise, it removes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            property.addAll(Stub(ProviderInternal))
    
            then:
            def e3 = thrown(IllegalStateException)
            e3.message == 'The value for this property cannot be changed any further.'
        }
    
        def "finalizes upstream properties when value read using #method and disallow unsafe reads"() {
            def a = property()
            def b = property()
            def c = elementProperty()
            def property = property()
    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. src/runtime/pprof/pprof_test.go

    			})
    		}
    		wg.Wait()
    	})
    
    	// The finalizer goroutine should not show up in most profiles, since it's
    	// marked as a system goroutine when idle.
    	t.Run("finalizer not present", func(t *testing.T) {
    		var w strings.Builder
    		goroutineProf.WriteTo(&w, 1)
    		prof := w.String()
    		if includesFinalizer(prof) {
    			t.Errorf("profile includes finalizer (but finalizer should be marked as system):\n%s", prof)
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    // goroutineProfileState will be "InProgress" and it will not be able to run
    // until the capture completes and the state moves to "Satisfied".
    //
    // Some goroutines (the finalizer goroutine, which at various times can be
    // either a "system" or a "user" goroutine, and the goroutine that is
    // coordinating the profile, any goroutines created during the profile) move
    // directly to the "Satisfied" state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Plugins or build logic that eagerly queries the attributes of JVM configurations may now cause the project's Java toolchain to be finalized earlier than before.
    Attempting to modify the toolchain after it has been finalized will result in error messages similar to the following:
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top