Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,428 for Cleaning (0.15 sec)

  1. pkg/volume/configmap/configmap.go

    	defer func() {
    		// Clean up directories if setup fails
    		if !setupSuccess {
    			unmounter, unmountCreateErr := b.plugin.NewUnmounter(b.volName, b.podUID)
    			if unmountCreateErr != nil {
    				klog.Errorf("error cleaning up mount %s after failure. Create unmounter failed with %v", b.volName, unmountCreateErr)
    				return
    			}
    			tearDownErr := unmounter.TearDown()
    			if tearDownErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	return true
    }
    
    func (tc *Controller) handleErr(err error, key string) {
    	if err == nil {
    		tc.queue.Forget(key)
    		return
    	}
    
    	utilruntime.HandleError(fmt.Errorf("error cleaning up Job %v, will retry: %v", key, err))
    	tc.queue.AddRateLimited(key)
    }
    
    // processJob will check the Job's state and TTL and delete the Job when it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Handshake.kt

      /** Returns a possibly-empty list of certificates that identify this peer. */
      @get:JvmName("localCertificates") val localCertificates: List<Certificate>,
      // Delayed provider of peerCertificates, to allow lazy cleaning.
      peerCertificatesFn: () -> List<Certificate>,
    ) {
      /** Returns a possibly-empty list of certificates that identify the remote peer. */
      @get:JvmName("peerCertificates")
      val peerCertificates: List<Certificate> by lazy {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. pkg/test/framework/testcontext.go

    	}
    }
    
    func (c *testContext) close() {
    	if c.Failed() && c.Settings().CIMode {
    		c.dump()
    	}
    
    	scopes.Framework.Debugf("Begin cleaning up testContext: %q", c.id)
    	if err := c.scope.done(c.suite.settings.NoCleanup); err != nil {
    		c.Logf("error scope cleanup: %v", err)
    		if c.Settings().FailOnDeprecation {
    			if errors.IsOrContainsDeprecatedError(err) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. tests/integration/helm/upgrade/util.go

    	}
    }
    
    // deleteIstio deletes installed Istio Helm charts and resources
    func deleteIstio(cs cluster.Cluster, h *helm.Helm, nsConfig helmtest.NamespaceConfig, gatewayChartInstalled bool) error {
    	scopes.Framework.Infof("cleaning up resources")
    	if gatewayChartInstalled {
    		if err := h.DeleteChart(helmtest.IngressReleaseName, nsConfig.Get(helmtest.IngressReleaseName)); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. cluster/gce/gci/flexvolume_node_setup.sh

          return 0
        fi
        sleep 1
        timeout=$(( timeout-1 ))
      done
    
      # Timed out waiting for kubelet to become healthy.
      return 1
    }
    
    flex_clean() {
      echo
      echo "An error has occurred. Cleaning up..."
      echo
    
      umount_silent ${VOLUME_PLUGIN_DIR}
      rm -rf ${VOLUME_PLUGIN_DIR}
      umount_silent ${MOUNTER_PATH}/var/lib/kubelet
      umount_silent ${MOUNTER_PATH}
      rm -rf ${MOUNTER_PATH}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocWorkAvoidanceIntegrationTest.groovy

            def oldHash = bJar.md5Hash
            when:
            // Timestamps in the jar have a 2-second precision, so we need to see a different jar before continuing
            ConcurrentTestUtil.poll(6) {
                // cleaning b and rebuilding will cause b.jar to be different
                succeeds(":b:clean")
                succeeds(":a:javadoc")
                assert oldHash != bJar.md5Hash
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. src/packaging/deb/init.d/fess

    		start-stop-daemon --stop --pidfile "$PID_FILE" \
    			--user "$FESS_USER" \
    			--quiet \
    			--retry forever/TERM/20 > /dev/null
    		if [ $? -eq 1 ]; then
    			log_progress_msg "$DESC is not running but pid file exists, cleaning up"
    		elif [ $? -eq 3 ]; then
    			PID="`cat $PID_FILE`"
    			log_failure_msg "Failed to stop $DESC (pid $PID)"
    			exit 1
    		fi
    		rm -f "$PID_FILE"
    	else
    		log_progress_msg "(not running)"
    	fi
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/net.go

    func (s *NetServer) RemovePodFromMesh(ctx context.Context, pod *corev1.Pod) error {
    	log := log.WithLabels("ns", pod.Namespace, "name", pod.Name)
    	log.Debugf("Pod is now opt out... cleaning up.")
    
    	openNetns := s.currentPodSnapshot.Take(string(pod.UID))
    	if openNetns == nil {
    		log.Warn("failed to find pod netns during removal")
    		return fmt.Errorf("failed to find pod netns during removal")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/configmap.go

    				scopes.Framework.Debugf("cleanup patched %s injection configmap:\n%s", c.Name(), cfgMap.Data["config"])
    				return nil
    			})
    		}
    		if err := errG.Wait().ErrorOrNil(); err != nil {
    			scopes.Framework.Errorf("failed cleaning up cluster-local config: %v", err)
    		}
    	})
    	return errG.Wait().ErrorOrNil()
    }
    
    func (ic *injectConfig) ValuesConfig() (*inject.ValuesConfig, error) {
    	ic.mu.Lock()
    	myic := ic.values
    	ic.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top