Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,504 for cleaned (0.24 sec)

  1. pkg/apis/extensions/register.go

    	AddToScheme   = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	// TODO this gets cleaned up when the types are fixed
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&apps.Deployment{},
    		&apps.DeploymentList{},
    		&apps.DeploymentRollback{},
    		&apps.DaemonSetList{},
    		&apps.DaemonSet{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats

        test "$WHEEL_MEGABYTES" -le "$LARGEST_OK_SIZE"
    }
    
    # Note: this runs before the tests further down the file, so TF is installed in
    # the venv and the venv is active when those tests run. The venv gets cleaned
    # up in teardown_file() above.
    @test "Wheel is installable" {
        python3 -m venv /tf/venv
        source /tf/venv/bin/activate
        python3 -m pip install --upgrade setuptools wheel
        python3 -m pip install "$TF_WHEEL"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

        /**
         * Specifies an action to execute when the cache needs to be cleaned up. An exclusive lock is held while the cleanup is executing, to prevent cross-process access.
         *
         * A clean-up action is run when a cache is closed, but only after the interval specified by the provided {@link CacheCleanupStrategy}.
         */
        CacheBuilder withCleanupStrategy(CacheCleanupStrategy cleanup);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            assertEquals(TaskOutcome.FAILED, result.task(":failed-test-with-leftover:test")!!.outcome)
    
            // leftover files failed tests are reported but not counted as an exception, but cleaned up eventually
            assertEquals(1, StringUtils.countMatches(result.output, "Found non-empty test files dir"))
            assertEquals(1, StringUtils.countMatches(result.output, "Failed to stop service 'testFilesCleanupBuildService'"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/AbstractProjectBuilderSpec.groovy

        }
    
        final ProjectInternal getProject() {
            assert rootProject!=null
            return rootProject
        }
    
        def cleanup() {
            // The root project needs to be cleaned up
            ProjectBuilderImpl.stop(project)
        }
    
        void execute(Task task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http/ExchangeCodec.kt

      /** Returns the trailers after the HTTP response. May be empty. */
      @Throws(IOException::class)
      fun trailers(): Headers
    
      /**
       * Cancel this stream. Resources held by this stream will be cleaned up, though not synchronously.
       * That may happen later by the connection pool thread.
       */
      fun cancel()
    
      /**
       * Carries an exchange. This is usually a connection, but it could also be a connect plan for
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/path/path.go

    // After dropping the final element using [Split], the path is Cleaned and trailing
    // slashes are removed.
    // If the path is empty, Dir returns ".".
    // If the path consists entirely of slashes followed by non-slash bytes, Dir
    // returns a single slash. In any other case, the returned path does not end in a
    // slash.
    func Dir(path string) string {
    	dir, _ := Split(path)
    	return Clean(dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. pkg/controller/certificates/cleaner/cleaner.go

    limitations under the License.
    */
    
    // Package cleaner implements an automated cleaner that does garbage collection
    // on CSRs that meet specific criteria. With automated CSR requests and
    // automated approvals, the volume of CSRs only increases over time, at a rapid
    // rate if the certificate duration is short.
    package cleaner
    
    import (
    	"context"
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"time"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt

    ) : CertificateChainCleaner() {
      /**
       * Returns a cleaned chain for [chain].
       *
       * This method throws if the complete chain to a trusted CA certificate cannot be constructed.
       * This is unexpected unless the trust root index in this class has a different trust manager than
       * what was used to establish [chain].
       */
      @Throws(SSLPeerUnverifiedException::class)
      override fun clean(
        chain: List<Certificate>,
        hostname: String,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    	fdate = fdate[len(fdate)-len("2006-01-02"):]
    
    	newname := filepath.Join(u.dir.UploadDir(), fdate+".json")
    	if _, err := os.Stat(newname); err == nil {
    		// Another process uploaded but failed to clean up (or hasn't yet cleaned
    		// up). Ensure that cleanup occurs.
    		_ = os.Remove(fname)
    		return false
    	}
    
    	// Lock the upload, to prevent duplicate uploads.
    	{
    		lockname := newname + ".lock"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top