Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 503 for backref (0.33 sec)

  1. pkg/adsc/adsc.go

    	// InsecureSkipVerify skips client verification the server's certificate chain and host name.
    	InsecureSkipVerify bool
    
    	// BackoffPolicy determines the reconnect policy. Based on MCP client.
    	BackoffPolicy backoff.BackOff
    
    	GrpcOpts []grpc.DialOption
    }
    
    // ADSConfig for the ADS connection.
    type ADSConfig struct {
    	Config
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_test.go

    	}
    }
    
    func retryWithExponentialBackOff(initialDuration time.Duration, fn wait.ConditionFunc) error {
    	backoff := wait.Backoff{
    		Duration: initialDuration,
    		Factor:   3,
    		Jitter:   0,
    		Steps:    6,
    	}
    	return wait.ExponentialBackoff(backoff, fn)
    }
    
    func TestPluginRegistration(t *testing.T) {
    	socketDir := initTempDir(t)
    	defer os.RemoveAll(socketDir)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/JdkBackedImmutableMap.java

    /**
     * Implementation of ImmutableMap backed by a JDK HashMap, which has smartness protecting against
     * hash flooding.
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    final class JdkBackedImmutableMap<K, V> extends ImmutableMap<K, V> {
      /**
       * Creates an {@code ImmutableMap} backed by a JDK HashMap. Used when probable hash flooding is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyDownloadService.java

            Deque<URI> serversLeft = new ArrayDeque<>(baseUris);
            try {
                ExponentialBackoff<ExponentialBackoff.Signal> backoff = ExponentialBackoff.of(5, TimeUnit.SECONDS, 50, TimeUnit.MILLISECONDS);
                backoff.retryUntil(() -> {
                    URI baseUri = serversLeft.poll();
                    if (baseUri == null) {
                        // no more servers left despite retries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:49:35 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/internal/bio/buf.go

    }
    
    func (r *Reader) File() *os.File {
    	return r.f
    }
    
    func (w *Writer) File() *os.File {
    	return w.f
    }
    
    // Slice reads the next length bytes of r into a slice.
    //
    // This slice may be backed by mmap'ed memory. Currently, this memory
    // will never be unmapped. The second result reports whether the
    // backing memory is read-only.
    func (r *Reader) Slice(length uint64) ([]byte, bool, error) {
    	if length == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 11 17:15:15 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			maxVols:      3,
    			test:         "new pod's count considers PVCs backed by AzureDisk volumes",
    		},
    		{
    			newPod:       splitPVCPod(azureDiskVolumeFilterType),
    			existingPods: []*v1.Pod{splitAzureDiskPod, oneAzureDiskPod},
    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      3,
    			test:         "new pod's count ignores PVCs not backed by AzureDisk volumes",
    		},
    		{
    			newPod:       twoAzureDiskPod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java

       * default initial capacity and load factor.
       */
      public static <B extends @Nullable Object> MutableClassToInstanceMap<B> create() {
        return new MutableClassToInstanceMap<>(new HashMap<Class<? extends @NonNull B>, B>());
      }
    
      /**
       * Returns a new {@code MutableClassToInstanceMap} instance backed by a given empty {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtJvmTypeMapper.kt

            withValidityAssertion { analysisSession.jvmTypeMapper.mapTypeToJvmType(this, mode) }
    
        /**
         * Returns true if the type is backed by a single JVM primitive type
         */
        public val KaType.isPrimitiveBacked: Boolean
            get() = withValidityAssertion { analysisSession.jvmTypeMapper.isPrimitiveBacked(this) }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/LocallyAvailableResource.java

     */
    package org.gradle.internal.resource.local;
    
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.resource.Resource;
    
    import java.io.File;
    
    /**
     * Represents a file backed local resource.
     */
    public interface LocallyAvailableResource extends Resource {
    
        File getFile();
    
        HashCode getSha1();
    
        long getLastModified();
    
        long getContentLength();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 992 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/wait/delay.go

    )
    
    // DelayFunc returns the next time interval to wait.
    type DelayFunc func() time.Duration
    
    // Timer takes an arbitrary delay function and returns a timer that can handle arbitrary interval changes.
    // Use Backoff{...}.Timer() for simple delays and more efficient timers.
    func (fn DelayFunc) Timer(c clock.Clock) Timer {
    	return &variableTimer{fn: fn, new: c.NewTimer}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top