Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for lake (0.04 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            }
            if (v instanceof DynamicVariable) {
                String name = ve.getName();
                ClassNode t = ClassHelper.make(name);
                // asking isResolved here allows to check if a primitive
                // type name like "int" was used to make t. In such a case
                // we have nothing left to do.
                boolean isClass = t.isResolved();
                if (!isClass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		}
    		if total == 0 {
    			t.Logf("no samples in expected functions")
    			ok = false
    		}
    
    		// We'd like to check a reasonable minimum, like
    		// total / len(have) / smallconstant, but this test is
    		// pretty flaky (see bug 7095).  So we'll just test to
    		// make sure we got at least one sample.
    		min := uintptr(1)
    		for i, name := range need {
    			if have[i] < min {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider_test.go

    		NewFakeHostStatsProviderWithData(fakeStats, fakeOS),
    		false,
    	)
    
    	stats, err := provider.ListPodStats(ctx)
    	assert := assert.New(t)
    	assert.NoError(err)
    	assert.Equal(4, len(stats))
    
    	podStatsMap := make(map[statsapi.PodReference]statsapi.PodStats)
    	for _, s := range stats {
    		podStatsMap[s.PodRef] = s
    	}
    
    	p0 := podStatsMap[statsapi.PodReference{Name: "sandbox0-name", UID: "sandbox0-uid", Namespace: "sandbox0-ns"}]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    		// (The background context cannot).
    		//
    		// The interrupter goroutine waits for the input context to be done and
    		// closes the connection if this happens before the function returns.
    		done := make(chan struct{})
    		interruptRes := make(chan error, 1)
    		defer func() {
    			close(done)
    			if ctxErr := <-interruptRes; ctxErr != nil {
    				// Return context error to user.
    				ret = ctxErr
    			}
    		}()
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

       </artifact>
    </component>
    ----
    
    There are multiple reasons why you'd like to do so:
    
    1. an official site doesn't publish _secure_ checksums (SHA-256, SHA-512) but publishes multiple insecure ones (MD5, SHA1).
    While it's easy to fake a MD5 checksum and hard but possible to fake a SHA1 checksum, it's harder to fake both of them for the same artifact.
    2. you might want to add generated checksums to the list above
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/CacheBuilder.java

     *     normally {@code Object} unless it is constrained by using a method like {@code
     *     #removalListener}. Cache keys may not be null.
     * @param <V> the most general value type this builder will be able to create caches for. This is
     *     normally {@code Object} unless it is constrained by using a method like {@code
     *     #removalListener}. Cache values may not be null.
     * @author Charles Fry
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	if features.FilterGatewayClusterConfig {
    		ps.virtualServiceIndex.destinationsByGateway = make(map[string]sets.String)
    	}
    
    	virtualServices := env.List(gvk.VirtualService, NamespaceAll)
    
    	// values returned from ConfigStore.List are immutable.
    	// Therefore, we make a copy
    	vservices := make([]config.Config, len(virtualServices))
    
    	for i := range vservices {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    // The same dwarf.StructType pointer will always get the same tag.
    var anonymousStructTag = make(map[*dwarf.StructType]string)
    
    func (c *typeConv) Init(ptrSize, intSize int64) {
    	c.ptrSize = ptrSize
    	c.intSize = intSize
    	c.m = make(map[string]*Type)
    	c.ptrs = make(map[string][]*Type)
    	c.getTypeIDs = make(map[string]bool)
    	c.incompleteStructs = make(map[string]bool)
    	c.bool = c.Ident("bool")
    	c.byte = c.Ident("byte")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    // more work. Until then, we report contention on runtime-internal locks with a
    // call stack taken from the unlock call (like the rest of the user-space
    // "mutex" profile), but assign it a duration value based on how long the
    // previous lock call took (like the user-space "block" profile).
    //
    // Thus, reporting the call stacks of runtime-internal lock contention is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top