Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 148 for orphaned (0.27 sec)

  1. CHANGELOG/CHANGELOG-1.10.md

    AWS Security Groups created for ELBs will now be tagged with the same additional tags as the ELB; that is, the tags specified by the "service.beta.kubernetes.io/aws-load-balancer-additional-resource-tags" annotation. This is useful for identifying orphaned resources. ([#58767](https://github.com/kubernetes/kubernetes/pull/58767), [@2rs2ts](https://github.com/2rs2ts))
    
    * AWS Network Load Balancers will now be deleted properly, including security group rules. Fixes [#57568](https://githu...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "orphanDependents": {
                "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
                "type": "boolean"
              },
              "preconditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/VirtualPlatformState.java

         * is no longer valid and we can attach the target revision.
         *
         * @param edge the orphan edge
         */
        void addOrphanEdge(EdgeState edge) {
            orphanEdges.add(edge);
        }
    
        void attachOrphanEdges() {
            for (EdgeState orphanEdge : orphanEdges) {
                orphanEdge.attachToTargetConfigurations();
            }
            orphanEdges.clear();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.15.md

    * Fixed panic when accessing CustomResources of a CRD with x-kubernetes-int-or-string. ([#83790](https://github.com/kubernetes/kubernetes/pull/83790), [@sttts](https://github.com/sttts))
    * Update Azure load balancer to prevent orphaned public IP addresses ([#82890](https://github.com/kubernetes/kubernetes/pull/82890), [@chewong](https://github.com/chewong))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    			logger.V(3).Info("Failed to delete volume", "volumeName", volume.Name, "err", deleteErr)
    			time.Sleep(ctrl.createProvisionedPVInterval)
    		}
    
    		if deleteErr != nil {
    			// Delete failed several times. There is an orphaned volume and there
    			// is nothing we can do about it.
    			strerr := fmt.Sprintf("Error cleaning provisioned volume for claim %s: %v. Please delete manually.", claimToClaimKey(claim), deleteErr)
    			logger.V(2).Info(strerr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/BuildProgressCrossVersionSpec.groovy

            def orphans = roots.findAll { it.descriptor.name != 'Run build' }
            orphans.size() == 4
            orphans.findAll { it.descriptor.name.startsWith('Unmanaged thread operation #') } == orphans
            orphans[0].child "Download ${module.rootMetaData.uri}"
            orphans[1].child "Download ${module.rootMetaData.sha1.uri}"
            orphans[2].child "Download ${module.rootMetaData.uri}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.13.md

    ### Other notable changes
    
    * Fix possible fd leak and closing of dirs in doSafeMakeDir  ([#79534](https://github.com/kubernetes/kubernetes/pull/79534), [@odinuge](https://github.com/odinuge))
    * fix kubelet fail to delete orphaned pod directory when the kubelet's pods directory (default is "/var/lib/kubelet/pods") symbolically links to another disk device's directory ([#79094](https://github.com/kubernetes/kubernetes/pull/79094), [@gaorong](https://github.com/gaorong))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  8. pkg/registry/core/namespace/storage/storage_test.go

    			},
    		},
    		{
    			name: "propagation-orphan-with-orphan",
    			deleteOptions: &metav1.DeleteOptions{
    				PropagationPolicy: &propagationOrphan,
    			},
    			existingFinalizers: []string{
    				metav1.FinalizerOrphanDependents,
    			},
    			remainingFinalizers: map[string]bool{
    				metav1.FinalizerOrphanDependents: true,
    			},
    		},
    		{
    			name: "propagation-orphan-with-delete",
    			deleteOptions: &metav1.DeleteOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 05:13:34 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    		select {
    		case err := <-errs:
    			if got, want := err, errOffline; got != want {
    				t.Errorf("unexpected err: got %v, want %v", got, want)
    			}
    		case <-to.C:
    			t.Fatalf("orphaned connection request(s), still waiting after %v", timeout)
    		}
    	}
    
    	// Wait a reasonable time for the database to close all connections.
    	tick := time.NewTicker(3 * time.Millisecond)
    	defer tick.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. build/pause/Makefile

    	touch $@
    
    # Useful for testing, not automatically included in container image
    orphan: bin/orphan-linux-$(ARCH)
    bin/orphan-linux-$(ARCH): linux/orphan.c
    	mkdir -p bin
    	docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
    		$(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \
    		/bin/bash -c "\
    			cd /build && \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top