Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for permanently (0.19 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

          assertThat(logFormatter.format(record)).doesNotContain("NoOpService");
        }
      }
    
      /**
       * Tests that a ServiceManager can be fully shut down if one of its failure listeners is slow or
       * even permanently blocked.
       */
      public void testListenerDeadlock() throws InterruptedException {
        final CountDownLatch failEnter = new CountDownLatch(1);
        final CountDownLatch failLeave = new CountDownLatch(1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    			console.Debugf(applyActionsLogPrefix+" lifecycle: %q Initial scan: %v\n", i.objectPath(), lcEvt.Action)
    		}
    	}
    
    	switch lcEvt.Action {
    	// This version doesn't contribute towards sizeS only when it is permanently deleted.
    	// This can happen when,
    	// - ExpireObjectAllVersions flag is enabled
    	// - NoncurrentVersionExpiration is applicable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    In the end nobody gets blocked in their work, and the incident is chalked up to "Gradle acting up again."
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_plugin.go

    			kvh.SetKubeletError(nil)
    			return true, nil
    		})
    		if err != nil {
    			// 2 releases after CSIMigration and all CSIMigrationX (where X is a volume plugin)
    			// are permanently enabled the apiserver/controllers can assume that the kubelet is
    			// using CSI for all Migrated volume plugins. Then all the CSINode initialization
    			// code can be dropped from Kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_4x.md

    =====================
    
    ## Version 4.12.0
    
    _2023-10-16_
    
     *  Fix: Don't hang taking headers for HTTP 103 responses.
    
     *  Fix: Recover gracefully when a cache entry's certificate is corrupted.
    
     *  Fix: Fail permanently when there's a failure loading the bundled public suffix database.
        This is the dataset that powers `HttpUrl.topPrivateDomain()`.
    
     *  Fix: Immediately update the connection's flow control window instead of waiting for the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. pkg/controller/tainteviction/taint_eviction_test.go

    	controller.handleNodeUpdate(ctx, nodeUpdateItem{"node1"})
    	// verify pod is not queued for deletion
    	if controller.taintEvictionQueue.GetWorkerUnsafe(podNamespacedName.String()) != nil {
    		t.Fatalf("pod queued for deletion with permanently tolerated taint")
    	}
    
    	// infinitely tolerated taint -> temporarily tolerated taint
    	nodeIndexer.Update(doubleTaintedNode)
    	controller.handleNodeUpdate(ctx, nodeUpdateItem{"node1"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. src/encoding/gob/type.go

    // control over the representation of its data and may therefore
    // contain things such as private fields, channels, and functions,
    // which are not usually transmissible in gob streams.
    //
    // Note: Since gobs can be stored permanently, it is good design
    // to guarantee the encoding used by a GobEncoder is stable as the
    // software evolves. For instance, it might make sense for GobEncode
    // to include a version number in the encoding.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. cluster/gce/windows/common.psm1

        [parameter(Mandatory=$true)] [hashtable]$KubeEnv
      )
    
      if ($KubeEnv.Contains('TEST_CLUSTER') -and `
          ($KubeEnv['TEST_CLUSTER'] -eq 'true')) {
        return $true
      }
      return $false
    }
    
    # Permanently adds a directory to the $env:PATH environment variable.
    function Add-MachineEnvironmentPath {
      param (
        [parameter(Mandatory=$true)] [string]$Path
      )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/cache/secretcache.go

    	defer func() {
    		if secret == nil || err != nil {
    			return
    		}
    		// We need to hold a mutex here, otherwise if two threads are writing the same certificate,
    		// we may permanently end up with a mismatch key/cert pair. We still make end up temporarily
    		// with mismatched key/cert pair since we cannot atomically write multiple files. It may be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. src/net/http/fs.go

    	}
    	if errors.Is(err, fs.ErrPermission) {
    		return "403 Forbidden", StatusForbidden
    	}
    	// Default:
    	return "500 Internal Server Error", StatusInternalServerError
    }
    
    // localRedirect gives a Moved Permanently response.
    // It does not convert relative paths to absolute paths like Redirect does.
    func localRedirect(w ResponseWriter, r *Request, newPath string) {
    	if q := r.URL.RawQuery; q != "" {
    		newPath += "?" + q
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top