Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,069 for cleaning (0.24 sec)

  1. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    			mgr := NewKubeStaticPodPathManager(realKubernetesDir, "", tempManifestDir, backupManifestDir, backupEtcdDir, test.keepManifest, test.keepEtcd)
    			err := mgr.CleanupDirs()
    			if err != nil {
    				t.Errorf("unexpected error cleaning up: %v", err)
    			}
    
    			if _, err := os.Stat(tempManifestDir); !os.IsNotExist(err) {
    				t.Errorf("%q should not have existed", tempManifestDir)
    			}
    			_, err = os.Stat(backupManifestDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. docs/site-replication/run-sse-kms-object-replication.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	pkill -9 kes || sudo pkill -9 kes
    	rm -rf ${PWD}/keys
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. pilot/pkg/autoregistration/controller.go

    func (c *Controller) deleteEntry(wle config.Config, periodic bool) {
    	if err := c.store.Delete(gvk.WorkloadEntry, wle.Name, wle.Namespace, &wle.ResourceVersion); err != nil && !errors.IsNotFound(err) {
    		log.Warnf("failed cleaning up auto-registered WorkloadEntry %s/%s: %v", wle.Namespace, wle.Name, err)
    		autoRegistrationErrors.Increment()
    		return
    	}
    	autoRegistrationDeletes.Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/FinalizableReferenceQueue.java

           */
          reference.clear();
          try {
            ((FinalizableReference) reference).finalizeReferent();
          } catch (Throwable t) {
            logger.log(Level.SEVERE, "Error cleaning up after reference.", t);
          }
        }
      }
    
      /**
       * Iterates through the given loaders until it finds one that can load Finalizer.
       *
       * @return Finalizer.class
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-ldap.sh

    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    	cat /tmp/minio2_2.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    	cat /tmp/minio3_2.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/minio-ldap-idp{1,2,3}
    }
    
    cleanup
    
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/FinalizableReferenceQueue.java

           */
          reference.clear();
          try {
            ((FinalizableReference) reference).finalizeReferent();
          } catch (Throwable t) {
            logger.log(Level.SEVERE, "Error cleaning up after reference.", t);
          }
        }
      }
    
      /**
       * Iterates through the given loaders until it finds one that can load Finalizer.
       *
       * @return Finalizer.class
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. pkg/registry/core/service/portallocator/controller/repair.go

    		default:
    			nodePortRepairPortErrors.WithLabelValues("leak").Inc()
    			// do not add it to the rebuilt set, which means it will be available for reuse
    			runtime.HandleError(fmt.Errorf("the node port %d appears to have leaked: cleaning up", port))
    		}
    	})
    
    	// Blast the rebuilt state into storage.
    	if err := rebuilt.Snapshot(snapshot); err != nil {
    		return fmt.Errorf("unable to snapshot the updated port allocations: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. docs/en/docs/async.md

    * **Machine Learning**: it normally requires lots of "matrix" and "vector" multiplications. Think of a huge spreadsheet with numbers and multiplying all of them together at the same time.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/internal/fuzz/worker.go

    	// Duration is the time spent minimizing, not including starting or cleaning up.
    	Duration time.Duration
    
    	// Count is the number of values tested.
    	Count int64
    }
    
    // fuzzArgs contains arguments to workerServer.fuzz. The value to fuzz is
    // passed in shared memory.
    type fuzzArgs struct {
    	// Timeout is the time to spend fuzzing, not including starting or
    	// cleaning up.
    	Timeout time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/types.go

    	// in an immediate IPVS resync.
    	MinSyncPeriod metav1.Duration
    	// scheduler is the IPVS scheduler to use
    	Scheduler string
    	// excludeCIDRs is a list of CIDRs which the ipvs proxier should not touch
    	// when cleaning up ipvs services.
    	ExcludeCIDRs []string
    	// strictARP configures arp_ignore and arp_announce to avoid answering ARP queries
    	// from kube-ipvs0 interface
    	StrictARP bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top