Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for cleaning (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            writeJournalInceptionTimestamp(daysAgo(8))
    
            when: 'cleaning build is started'
            def cleaningBarrier = blockingHttpServer.expectAndBlock("cleaning")
            def cleaningBuild = executer.withTasks("waitForCleaningBarrier").withArgument("--no-daemon").start()
    
            then: 'cleaning build starts and waits on its barrier'
            cleaningBarrier.waitForAllPendingCalls()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	klog.V(3).InfoS("Clean up orphaned pod user namespace allocations")
    	if err = kl.usernsManager.CleanupOrphanedPodUsernsAllocations(allPods, runningRuntimePods); err != nil {
    		klog.ErrorS(err, "Failed cleaning up orphaned pod user namespaces allocations")
    	}
    
    	// Remove orphaned volumes from pods that are known not to have any
    	// containers. Note that we pass all pods (including terminated pods) to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

            try {
              drainReferenceQueues();
            } finally {
              unlock();
            }
          }
        }
    
        /**
         * Drain the key and value reference queues, cleaning up internal entries containing garbage
         * collected keys or values.
         */
        @GuardedBy("this")
        void drainReferenceQueues() {
          if (map.usesKeyReferences()) {
            drainKeyReferenceQueue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

            try {
              drainReferenceQueues();
            } finally {
              unlock();
            }
          }
        }
    
        /**
         * Drain the key and value reference queues, cleaning up internal entries containing garbage
         * collected keys or values.
         */
        @GuardedBy("this")
        void drainReferenceQueues() {
          if (map.usesKeyReferences()) {
            drainKeyReferenceQueue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    		podDir := filepath.Join(podsDir, string(volumeToUnmount.PodUID))
    		if err := subpather.CleanSubPaths(podDir, volumeToUnmount.InnerVolumeSpecName); err != nil {
    			eventErr, detailedErr := volumeToUnmount.GenerateError("error cleaning subPath mounts", err)
    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// Execute unmount
    		unmountErr := volumeUnmounter.TearDown()
    		if unmountErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		return fmt.Errorf("error creating pods directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPluginsDir(), 0750); err != nil {
    		return fmt.Errorf("error creating plugins directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPluginsRegistrationDir(), 0750); err != nil {
    		return fmt.Errorf("error creating plugins registry directory: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    	waitDuration atomic.Int64
    
    	connector driver.Connector
    	// numClosed is an atomic counter which represents a total number of
    	// closed connections. Stmt.openStmt checks it before cleaning closed
    	// connections in Stmt.css.
    	numClosed atomic.Uint64
    
    	mu           sync.Mutex    // protects following fields
    	freeConn     []*driverConn // free connections ordered by returnedAt oldest to newest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    			return "", "", err
    		}
    	}
    	return newGoFile, objdir + gccBase + gccExt, nil
    }
    
    // disableBuildID adjusts a linker command line to avoid creating a
    // build ID when creating an object file rather than an executable or
    // shared library. Some systems, such as Ubuntu, always add
    // --build-id to every link, but we don't want a build ID when we are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    	pod, err = clientset.CoreV1().Pods(pod.GetNamespace()).Create(ctx, pod, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Creating pod: %v", err)
    	}
    
    	// Await for the Pod to appear in the podStore to ensure that the pod exists when cleaning up the Job.
    	// In a production environment, there wouldn't be these guarantees, but the Pod would be cleaned up
    	// by the orphan pod worker, when the Pod finishes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // used recently. Running 'go clean -cache' deletes all cached data.
    //
    // The build cache correctly accounts for changes to Go source files,
    // compilers, compiler options, and so on: cleaning the cache explicitly
    // should not be necessary in typical use. However, the build cache
    // does not detect changes to C libraries imported with cgo.
    // If you have made changes to the C libraries on your system, you
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top