Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for cleaning (0.25 sec)

  1. pkg/proxy/winkernel/proxier.go

    			} else {
    				klog.V(3).InfoS("Skipped creating Hns LoadBalancer for loadBalancer Ingress resources", "lbIngressIP", lbIngressIP)
    			}
    
    			if proxier.forwardHealthCheckVip && gatewayHnsendpoint != nil && endpointsAvailableForLB {
    				// Avoid creating health check loadbalancer if all the endpoints are terminating
    				nodeport := proxier.healthzPort
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

         */
        public void clearConstraintEdges(PendingDependencies pendingDependencies, NodeState backToPendingSource) {
            if (incomingEdges.isEmpty()) {
                return;
            }
            // Cleaning has to be done on a copied collection because of the recompute happening on selector removal
            List<EdgeState> remainingIncomingEdges = ImmutableList.copyOf(incomingEdges);
            clearIncomingEdges();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    	// These are effectively const and do not need the mutex to be held.
    	syncPeriod    time.Duration
    	minSyncPeriod time.Duration
    	// Values are CIDR's to exclude when cleaning up IPVS rules.
    	excludeCIDRs []*net.IPNet
    	// Set to true to set sysctls arp_ignore and arp_announce
    	strictARP      bool
    	iptables       utiliptables.Interface
    	ipvs           utilipvs.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

    }
    
    function detect_binary {
        host_arch=$(detect_arch)
        host_os=$(detect_os)
    
        GO_OUT="${KUBE_ROOT}/_output/local/bin/${host_os}/${host_arch}"
    }
    
    cleanup()
    {
      echo "Cleaning up..."
      # delete running images
      # if [[ "${ENABLE_CLUSTER_DNS}" == true ]]; then
      # Still need to figure why this commands throw an error: Error from server: client: etcd cluster is unavailable or misconfigured
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    			_, deleted, deleteErr = ctrl.doDeleteVolume(ctx, volume)
    			if deleteErr == nil && deleted {
    				// Delete succeeded
    				logger.V(4).Info("provisionClaimOperation: cleaning volume succeeded", "PVC", klog.KObj(claim), "volumeName", volume.Name)
    				break
    			}
    			if !deleted {
    				// This is unreachable code, the volume was provisioned by an
    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/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            true            | true
            true            | false
            false           | true
            false           | false
        }
    
        @Issue("gradle/gradle#8944")
        def 'verify that cleaning up constraints no longer causes a ConcurrentModificationException'() {
            given:
            // Direct dependency with transitive to be substituted by project
            def project = mavenRepo.module('org', 'project', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    		if err == nil {
    			tx := nft.NewTransaction()
    			tx.Delete(&knftables.Table{})
    			err = nft.Run(ctx, tx)
    		}
    		if err != nil && !knftables.IsNotFound(err) {
    			logger.Error(err, "Error cleaning up nftables rules")
    			encounteredError = true
    		}
    	}
    
    	return encounteredError
    }
    
    // Sync is called to synchronize the proxier state to nftables as soon as possible.
    func (proxier *Proxier) Sync() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
    
        /**
         * Performs routine cleanup following a read. Normally cleanup happens during writes, or from
         * the cleanupExecutor. If cleanup is not observed after a sufficient number of reads, try
         * cleaning up from the read thread.
         */
        void postReadCleanup() {
          if ((readCount.incrementAndGet() & DRAIN_THRESHOLD) == 0) {
            runCleanup();
          }
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
    
        /**
         * Performs routine cleanup following a read. Normally cleanup happens during writes, or from
         * the cleanupExecutor. If cleanup is not observed after a sufficient number of reads, try
         * cleaning up from the read thread.
         */
        void postReadCleanup() {
          if ((readCount.incrementAndGet() & DRAIN_THRESHOLD) == 0) {
            runCleanup();
          }
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    		// The coverage output will appear in the output directly.
    		return ""
    	}
    	return fmt.Sprintf("\tcoverage: %s", matches[1])
    }
    
    // builderCleanTest is the action for cleaning up after a test.
    func builderCleanTest(b *work.Builder, ctx context.Context, a *work.Action) error {
    	if cfg.BuildWork {
    		return nil
    	}
    	b.Shell(a).RemoveAll(a.Objdir)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top