Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for retriable (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    = Testing Gradle plugins
    
    Testing plays a crucial role in the development process by ensuring reliable and high-quality software.
    This principle applies to build code, including Gradle plugins.
    
    == The sample project
    
    This section revolves around a sample project called the "URL verifier plugin".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompactHashSet.java

       *       simply switch over to use the JDK implementation wholesale if probable hash flooding is
       *       detected, sacrificing the compactness guarantee in very rare cases in exchange for much
       *       more reliable worst-case behavior.
       *   <li>null, if no entries have yet been added to the map
       * </ul>
       */
      @CheckForNull private transient Object table;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. pkg/kubelet/pleg/generic.go

    		g.podRecords.update(pid)
    
    		// Map from containerId to exit code; used as a temporary cache for lookup
    		containerExitCode := make(map[string]int)
    
    		for i := range events {
    			// Filter out events that are not reliable and no other components use yet.
    			if events[i].Type == ContainerChanged {
    				continue
    			}
    			select {
    			case g.eventChannel <- events[i]:
    			default:
    				metrics.PLEGDiscardEvents.Inc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactHashSet.java

       *       simply switch over to use the JDK implementation wholesale if probable hash flooding is
       *       detected, sacrificing the compactness guarantee in very rare cases in exchange for much
       *       more reliable worst-case behavior.
       *   <li>null, if no entries have yet been added to the map
       * </ul>
       */
      @CheckForNull private transient Object table;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/cache/secretcache.go

    	totalTimeout = time.Second * 10
    )
    
    const (
    	// firstRetryBackOffDuration is the initial backoff time interval when hitting
    	// non-retryable error in CSR request or while there is an error in reading file mounts.
    	firstRetryBackOffDuration = 50 * time.Millisecond
    )
    
    // SecretManagerClient a SecretManager that signs CSRs using a provided security.Client. The primary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    For example, there are no lock strategies because Gradle guarantees that its dependency cache is concurrency safe.
    There are no "latest strategies" methodology because it's simpler to have a reliable, single strategy for conflict resolution.
    If the "wrong" version is picked, you can override it using forced versions or other resolution options.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. cluster/gce/upgrade.sh

      tars_from_version
    }
    
    # Reads kube-env metadata from first node in NODE_NAMES.
    #
    # Assumed vars:
    #   NODE_NAMES
    #   PROJECT
    #   ZONE
    function get-node-env() {
      # TODO(zmerlynn): Make this more reliable with retries.
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${NODE_NAMES[0]}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. README.md

    <a href="https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" target="_blank" title="Build, run and scale your apps on a modern, reliable, and secure PaaS."><img src="https://fastapi.tiangolo.com/img/sponsors/platform-sh.png"></a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/kube.go

    	}
    	return args
    }
    
    func waitForIstioReady(ctx resource.Context, c cluster.Cluster, cfg Config) error {
    	if !cfg.SkipWaitForValidationWebhook {
    		// Wait for webhook to come online. The only reliable way to do that is to see if we can submit invalid config.
    		if err := waitForValidationWebhook(ctx, c, cfg); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. pkg/volume/util/util.go

    		if volumeSpec.Volume.AzureDisk != nil ||
    			volumeSpec.Volume.Cinder != nil {
    			return false
    		}
    	}
    
    	// Only if this volume is a persistent volume, we have reliable information on whether it's allowed or not to
    	// multi-attach. We trust in the individual volume implementations to not allow unsupported access modes
    	if volumeSpec.PersistentVolume != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top