Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,428 for Cleaning (0.3 sec)

  1. 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)
  2. 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)
  3. pkg/volume/projected/projected.go

    	defer func() {
    		// Clean up directories if setup fails
    		if !setupSuccess {
    			unmounter, unmountCreateErr := s.plugin.NewUnmounter(s.volName, s.podUID)
    			if unmountCreateErr != nil {
    				klog.Errorf("error cleaning up mount %s after failure. Create unmounter failed with %v", s.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
    - 12.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    Build services are configuration cacheable.
    
    Gradle manages the service lifecycle, creating the service instance only when required and cleaning it up when no longer needed.
    Gradle can also coordinate access to the build service, ensuring that no more than a specified number of tasks use the service concurrently.
    
    == Implementing a build service
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/clean/clean.go

    			cacheFlag = "-modcache"
    		}
    		if cacheFlag != "" {
    			base.Fatalf("go: clean %s cannot be used with package arguments", cacheFlag)
    		}
    	}
    
    	// golang.org/issue/29925: only load packages before cleaning if
    	// either the flags and arguments explicitly imply a package,
    	// or no other target (such as a cache) was requested to be cleaned.
    	cleanPkg := len(args) > 0 || cleanI || cleanR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. 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)
Back to top