Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 122 for orphaned (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional Preconditions preconditions = 2;
    
      // 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.
      // +optional
      optional bool orphanDependents = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// 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.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Fix: After a Node is down and take some time to get back to up again, the mount point of the evicted Pods cannot be cleaned up successfully. (#111933) Meanwhile Kubelet will print the log `Orphaned pod "xxx" found, but error not a directory occurred when trying to remove the volumes dir` every 2 seconds. (#105536) ([#116134](https://github.com/kubernetes/kubernetes/pull/116134), [@cvvz](https://github.com/cvvz)) [SIG Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. pkg/registry/batch/job/storage/storage_test.go

    		},
    		{
    			description:   "deletion: orphan dependents, no warnings",
    			expectWarning: false,
    			deleteOptions: &metav1.DeleteOptions{OrphanDependents: &orphanDependents},
    			requestInfo:   &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v1"},
    		},
    		{
    			description:   "deletion: orphan deletion, no warnings",
    			expectWarning: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top