Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 503 for backref (0.25 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    		} else {
    			rst.fail("invalid digit in base 62 number")
    		}
    	}
    	rst.fail("expected _ after base 62 number")
    	return 0
    }
    
    // backref parses:
    //
    //	<backref> = "B" <base-62-number>
    func (rst *rustState) backref(demangle func()) {
    	backoff := rst.off
    
    	rst.checkChar('B')
    	idx64 := rst.base62Number()
    
    	if rst.skip {
    		return
    	}
    	if rst.max > 0 && rst.buf.Len() > rst.max {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  2. docs_src/sql_databases_peewee/sql_app/models.py

        class Meta:
            database = db
    
    
    class Item(peewee.Model):
        title = peewee.CharField(index=True)
        description = peewee.CharField(index=True)
        owner = peewee.ForeignKeyField(User, backref="items")
    
        class Meta:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 465 bytes
    - Viewed (0)
  3. src/regexp/exec_test.go

    		//     e	REG_NOTEOL		rhs does not match $
    		//     f	REG_MULTIPLE		multiple \n separated patterns
    		//     g	FNM_LEADING_DIR		testfnmatch only -- match until /
    		//     h	REG_MULTIREF		multiple digit backref
    		//     i	REG_ICASE		ignore case
    		//     j	REG_SPAN		. matches \n
    		//     k	REG_ESCAPE		\ to escape [...] delimiter
    		//     l	REG_LEFT		implicit ^...
    		//     m	REG_MINIMAL		minimal match
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. src/regexp/testdata/testregex.c

    T("    e	REG_NOTEOL		rhs does not match $\n");
    T("    f	REG_MULTIPLE		multiple \\n separated patterns\n");
    T("    g	FNM_LEADING_DIR		testfnmatch only -- match until /\n");
    T("    h	REG_MULTIREF		multiple digit backref\n");
    T("    i	REG_ICASE		ignore case\n");
    T("    j	REG_SPAN		. matches \\n\n");
    T("    k	REG_ESCAPE		\\ to ecape [...] delimiter\n");
    T("    l	REG_LEFT		implicit ^...\n");
    T("    m	REG_MINIMAL		minimal match\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    // backoff will not exceed the given max. If the backoff is not called within resetDuration, the backoff is reset.
    // This backoff manager is used to reduce load during upstream unhealthiness.
    //
    // Deprecated: Will be removed when the legacy Poll methods are removed. Callers should construct a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/wait/loop_test.go

    	// estimate how long this delay can be
    	intervalMax := func(backoff Backoff) time.Duration {
    		d := backoff.Duration
    		if backoff.Jitter > 0 {
    			d += time.Duration(backoff.Jitter * float64(d))
    		}
    		return d
    	}
    	// estimate how short this delay can be
    	intervalMin := func(backoff Backoff) time.Duration {
    		d := backoff.Duration
    		return d
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 02:48:08 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  7. pkg/backoff/exponential.go

    // limitations under the License.
    
    // Package backoff is a wrapper of `github.com/cenkalti/backoff/v4`.
    // It is to prevent misuse of `github.com/cenkalti/backoff/v4`,
    // thus application could fall into dead loop.
    package backoff
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"github.com/cenkalti/backoff/v4"
    )
    
    // BackOff is a backoff policy for retrying an operation.
    type BackOff interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 01:53:48 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    		if backoff < 1 || backoff > 2 {
    			t.Errorf("backoff out of range: %d", backoff)
    		}
    	}
    
    	// negative jitter, shall be a fixed backoff
    	backoffMgr = NewJitteredBackoffManager(1, -1, testingclock.NewFakeClock(time.Now()))
    	backoff := backoffMgr.(*jitteredBackoffManagerImpl).getNextBackoff()
    	if backoff != 1 {
    		t.Errorf("backoff should be 1, but got %d", backoff)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. pkg/controller/job/backoff_utils.go

    		if len(newFailedPods) == 0 {
    			return *backoff
    		}
    
    		backoff.failuresAfterLastSuccess = backoff.failuresAfterLastSuccess + int32(len(newFailedPods))
    		lastFailureTime := getFinishedTime(newFailedPods[len(newFailedPods)-1])
    		backoff.lastFailureTime = &lastFailureTime
    		return *backoff
    
    	} else {
    		if len(newFailedPods) == 0 {
    			backoff.failuresAfterLastSuccess = 0
    			backoff.lastFailureTime = nil
    			return *backoff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/transport/NetworkOperationBackOffAndRetry.java

                } else {
                    LOGGER.info("Error in '{}'. Waiting {}ms before next retry, {} retries left", operation, backoff, maxDeployAttempts - retries);
                    LOGGER.debug("Network operation failed", failure);
                    try {
                        Thread.sleep(backoff);
                        backoff *= 2;
                    } catch (InterruptedException e) {
                        throw UncheckedException.throwAsUncheckedException(e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 04:09:56 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top