Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 132 for predefined (0.31 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    	<-called
    	close(ch)
    	received <- struct{}{}
    
    	// it should take at most 2 seconds + some overhead, not 3
    	if now.Add(3 * time.Second).Before(time.Now()) {
    		t.Errorf("JitterUntil did not returned after predefined period with negative jitter factor when the stop chan was closed inside the func")
    	}
    }
    
    func TestExponentialBackoff(t *testing.T) {
    	// exits immediately
    	i := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/MediaType.java

     * Content-Type} header and as such has no support for header-specific considerations such as line
     * folding and comments.
     *
     * <p>For media types that take a charset the predefined constants default to UTF-8 and have a
     * "_UTF_8" suffix. To get a version without a character set, use {@link #withoutParameters}.
     *
     * @since 12.0
     * @author Gregory Kick
     */
    @GwtCompatible
    @Immutable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/MediaType.java

     * Content-Type} header and as such has no support for header-specific considerations such as line
     * folding and comments.
     *
     * <p>For media types that take a charset the predefined constants default to UTF-8 and have a
     * "_UTF_8" suffix. To get a version without a character set, use {@link #withoutParameters}.
     *
     * @since 12.0
     * @author Gregory Kick
     */
    @GwtCompatible
    @Immutable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    				// delivered to the pod worker via HandlePodAdditions - there is no *known* scenario that can happen, but
    				// we want to capture it in the metric. The more likely scenario is that a static pod with a predefined
    				// UID is updated, which causes pod config to deliver DELETE -> ADD while the old pod is still shutting
    				// down and the pod worker to ignore the ADD. The HandlePodCleanups method then is responsible for syncing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    ====
    
    You can specify multiple sources to tell Gradle to keep looking if a file was not found.
    In that case, the order of checking for sources is predefined.
    
    The following metadata sources are supported:
    
    .Supported metadata sources
    [%header%autowidth,compact]
    |===
    | Metadata source | Description | Order | Maven | Ivy / flat dir
    
    | `gradleMetadata()`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/rulegen.go

    //                   extra ignored args that need not appear in the replacement
    
    // extra conditions is just a chunk of Go that evaluates to a boolean. It may use
    // variables declared in the matching tsexpr. The variable "v" is predefined to be
    // the value matched by the entire rule.
    
    // If multiple rules match, the first one in file order is selected.
    
    var (
    	genLog  = flag.Bool("log", false, "generate code that logs; for debugging only")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  7. src/time/format.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package time
    
    import (
    	"errors"
    	"internal/stringslite"
    	_ "unsafe" // for linkname
    )
    
    // These are predefined layouts for use in [Time.Format] and [time.Parse].
    // The reference time used in these layouts is the specific time stamp:
    //
    //	01/02 03:04:05PM '06 -0700
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. doc/asm.html

    to avoid ambiguity, division or right shift where the right operand's
    high bit is set is rejected.
    </p>
    
    <h3 id="symbols">Symbols</h3>
    
    <p>
    Some symbols, such as <code>R1</code> or <code>LR</code>,
    are predefined and refer to registers.
    The exact set depends on the architecture.
    </p>
    
    <p>
    There are four predeclared symbols that refer to pseudo-registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  9. src/cmd/link/internal/ld/xcoff.go

    	ldr := ctxt.loader
    	/* C_FILE */
    	s := &XcoffSymEnt64{
    		Noffset: uint32(f.stringTable.add(".file")),
    		Nsclass: C_FILE,
    		Nscnum:  N_DEBUG,
    		Ntype:   0, // Go isn't inside predefined language.
    		Nnumaux: 1,
    	}
    	f.addSymbol(s)
    	currSymSrcFile.file = s
    
    	// Auxiliary entry for file name.
    	auxf := &XcoffAuxFile64{
    		Xoffset:  uint32(f.stringTable.add(name)),
    		Xftype:   XFT_FN,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    	// Leave out the '--' separator in the ls-remote command: git 2.7.4 does not
    	// support such a separator for that command, and this use should be safe
    	// without it because the {scheme} value comes from the predefined list above.
    	// See golang.org/issue/33836.
    	PingCmd: "ls-remote {scheme}://{repo}",
    
    	RemoteRepo: gitRemoteRepo,
    	Status:     gitStatus,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top