Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 503 for backref (0.1 sec)

  1. pkg/kubelet/pluginmanager/reconciler/reconciler_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)
    }
    
    type DummyImpl struct{}
    
    func NewDummyImpl() *DummyImpl {
    	return &DummyImpl{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/cache/secretcache.go

    	// TODO(ramaraochavali): Think about tieing these failures to liveness probe with a
    	// reasonable threshold (when the problem is not transient) and restart the pod.
    	go func() {
    		b := backoff.NewExponentialBackOff(backoff.DefaultOption())
    		_ = b.RetryWithContext(context.TODO(), func() error {
    			err := sc.tryAddFileWatcher(file, resourceName)
    			return err
    		})
    	}()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/provider/providers.go

    // ID defines underlying platform supporting service registry
    type ID string
    
    const (
    	// Mock is a service registry that contains 2 hard-coded test services
    	Mock ID = "Mock"
    	// Kubernetes is a service registry backed by k8s API server
    	Kubernetes ID = "Kubernetes"
    	// External is a service registry for externally provided ServiceEntries
    	External ID = "External"
    )
    
    func (id ID) String() string {
    	return string(id)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 20 16:41:15 UTC 2022
    - 1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.pom

        <groupId>org.codehaus.plexus</groupId>
        <version>1.1.6</version>
      </parent>
    
      <artifactId>plexus-active-collections</artifactId>
      <version>1.0-beta-1</version>
      <name>Plexus Container-Backed Active Collections</name>
    
      <dependencies>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-component-api</artifactId>
          <version>1.0-alpha-16</version>
        </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 27 10:08:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ResolutionBackedVariant.java

    import org.gradle.api.artifacts.Configuration;
    import org.gradle.api.component.SoftwareComponentVariant;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link SoftwareComponentVariant} which is optionally backed by resolution during publication.
     * If enabled, the resolution configuration is resolved in order to override declared dependencies
     * with the resolved coordinates and versions.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueCache.java

     * limitations under the License.
     */
    
    package org.gradle.internal.model;
    
    import java.util.Map;
    import java.util.function.Function;
    
    /**
     * A cache backed by calculated values. This map is thread-safe.
     */
    public interface CalculatedValueCache<K, V> {
    
        /**
         * @see Map#computeIfAbsent(Object, Function)
         */
        V computeIfAbsent(K key, Function<K, V> factory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1014 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/instance/ManagedInstance.java

    /**
     * A marker interface that is implemented by views of managed elements.
     */
    public interface ManagedInstance {
        /**
         * Returns the node that this managed instance is backed by.
         */
        MutableModelNode getBackingNode();
    
        /**
         * Returns the original model type of the instance. This can be used to look up the schema for the type.
         */
        ModelType<?> getManagedType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/FileCollectionSnapshotter.java

     */
    public interface FileCollectionSnapshotter {
        interface Result {
            FileSystemSnapshot getSnapshot();
    
            /**
             * Whether any of the snapshot file collections is an archive tree backed by a file.
             */
            boolean containsArchiveTrees();
        }
    
        /**
         * Snapshot the roots of a file collection.
         */
        Result snapshot(FileCollection fileCollection);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.pom

        <groupId>org.codehaus.plexus</groupId>
        <version>1.1.6</version>
      </parent>
    
      <artifactId>plexus-active-collections</artifactId>
      <version>1.0-beta-1</version>
      <name>Plexus Container-Backed Active Collections</name>
    
      <dependencies>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-component-api</artifactId>
          <version>1.0-alpha-16</version>
        </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/UrlModelSource.java

     *
     *
     * @deprecated instead use {@link UrlSource}
     */
    @Deprecated
    public class UrlModelSource extends UrlSource implements ModelSource {
        /**
         * Creates a new model source backed by the specified URL.
         *
         * @param pomUrl The POM file, must not be {@code null}.
         */
        public UrlModelSource(URL pomUrl) {
            super(pomUrl);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top