Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 503 for backref (0.12 sec)

  1. internal/rest/client.go

    func (c *Client) LastError() error {
    	c.RLock()
    	defer c.RUnlock()
    	return fmt.Errorf("[%s] %w", c.lastErrTime.Format(time.RFC3339), c.lastErr)
    }
    
    // computes the exponential backoff duration according to
    // https://www.awsarchitectureblog.com/2015/03/backoff.html
    func exponentialBackoffWait(r *rand.Rand, unit, cap time.Duration) func(uint) time.Duration {
    	if unit > time.Hour {
    		// Protect against integer overflow
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. 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
    - 7.1K bytes
    - Viewed (0)
  3. tests/testdata/config/se-example.yaml

    # For HTTP based services, it is possible to create a VirtualService
    # backed by multiple DNS addressable endpoints. In such a scenario, the
    # application can use the HTTP_PROXY environment variable to transparently
    # reroute API calls for the VirtualService to a chosen backend. For
    # example, the following configuration creates a non-existent external
    # service called foo.bar.com backed by three domains: us.foo.bar.com:8080,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 27 15:20:03 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

     */
    @Experimental
    public interface Source {
    
        /**
         * Provides access the file to be parsed, if this source is backed by a file.
         *
         * @return the underlying {@code Path}, or {@code null} if this source is not backed by a file
         */
        @Nullable
        Path getPath();
    
        /**
         * Creates a new byte stream to the source contents.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/scheduler/metrics/metrics.go

    func ActivePods() metrics.GaugeMetric {
    	return pendingPods.With(metrics.Labels{"queue": "active"})
    }
    
    // BackoffPods returns the pending pods metrics with the label backoff
    func BackoffPods() metrics.GaugeMetric {
    	return pendingPods.With(metrics.Labels{"queue": "backoff"})
    }
    
    // UnschedulablePods returns the pending pods metrics with the label unschedulable
    func UnschedulablePods() metrics.GaugeMetric {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiSymbol.kt

    import com.intellij.psi.PsiElement
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbolOrigin
    import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol
    
    /**
     * A [KaFirSymbol] that is backed by some [PsiElement] and builds [firSymbol] lazily (by convention), allowing some properties to be
     * calculated without the need to build a [firSymbol].
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 881 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/webhook/webhook_test.go

    	}
    }
    
    // TestWithExponentialBackoff ensures that the webhook's exponential backoff support works as expected
    func TestWithExponentialBackoff(t *testing.T) {
    	count := 0 // To keep track of the requests
    	gr := schema.GroupResource{
    		Group:    "webhook.util.k8s.io",
    		Resource: "test",
    	}
    
    	// Handler that will handle all backoff CONDITIONS
    	ebHandler := func(w http.ResponseWriter, r *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/PolymorphicManagedTypeIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class PolymorphicManagedTypeIntegrationTest extends AbstractIntegrationSpec {
    
        def "rule can provide a managed model element backed by an abstract class that implements interfaces"() {
            when:
            buildScript '''
                @Managed
                interface Named {
                    String getName()
                }
    
                @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java

         */
        List<String> findVersions(Artifact artifact);
    
        /**
         * Indicates whether this repository is backed by actual projects. For instance, the build reactor or IDE workspace
         * are examples of such repositories.
         *
         * @return {@code true} if the repository is backed by actual projects, {@code false} otherwise.
         * @since 3.0-beta-1
         */
        boolean isProjectAware();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 23 17:14:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResource.java

    import org.gradle.api.tasks.TaskDependency;
    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.io.Reader;
    
    /**
     * A read-only body of text backed by a string, file, archive entry, or other source.
     * To create a text resource, use one of the factory methods in {@link TextResourceFactory}
     * (e.g. {@code project.resources.text.fromFile(myFile)}).
     *
     * @since 2.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 3.1K bytes
    - Viewed (0)
Back to top