Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for orphaned (0.19 sec)

  1. api/openapi-spec/v3/api__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 May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                        edge("org:leaf2:[1,7]", "org:leaf2:4")
                    }
                }
            }
        }
    
        def "previously selected transitive dependency is not used when it becomes orphaned because of selection of a different version of its dependent module"() {
            given:
            (1..10).each {
                def dep = mavenRepo.module('org', 'zdep', "$it").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager.go

    	var updatedStatuses []podSync
    	podToMirror, mirrorToPod := m.podManager.GetUIDTranslations()
    	func() { // Critical section
    		m.podStatusesLock.RLock()
    		defer m.podStatusesLock.RUnlock()
    
    		// Clean up orphaned versions.
    		if all {
    			for uid := range m.apiStatusVersions {
    				_, hasPod := m.podStatuses[types.UID(uid)]
    				_, hasMirror := mirrorToPod[uid]
    				if !hasPod && !hasMirror {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    		svcInfo.cleanupAllPolicies(proxier.endpointsMap[*svcPortName], proxier.mapStaleLoadbalancers, true)
    	} else {
    		// If no service exists, just cleanup the remote endpoints
    		klog.V(3).InfoS("Endpoints are orphaned, cleaning up")
    		// Cleanup Endpoints references
    		epInfos, exists := proxier.endpointsMap[*svcPortName]
    
    		if exists {
    			// Cleanup Endpoints references
    			for _, ep := range epInfos {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    		return
    	}
    
    	// Otherwise, it's an orphan.
    	// Clean the finalizer.
    	if hasJobTrackingFinalizer(pod) {
    		jm.enqueueOrphanPod(pod)
    	}
    	// Get a list of all matching controllers and sync
    	// them to see if anyone wants to adopt it.
    	// DO NOT observe creation because no controller should be waiting for an
    	// orphan.
    	for _, job := range jm.getPodJobs(pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apps__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 May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  7. src/os/exec/exec_test.go

    	exitOnInterrupt := fs.Bool("interrupt", false, "if true, commands should exit 0 on os.Interrupt")
    	subsleep := fs.Duration("subsleep", 0, "amount of time for the 'hang' helper to leave an orphaned subprocess sleeping with stderr open")
    	probe := fs.Duration("probe", 0, "if nonzero, the 'hang' helper should write to stderr at this interval, and exit nonzero if a write fails")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top