Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for highest (0.77 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    				metrics.StartedHostProcessContainersErrorsTotal.WithLabelValues(metricLabel, err.Error()).Inc()
    			}
    			startContainerResult.Fail(err, msg)
    			// known errors that are logged in other places are logged at higher levels here to avoid
    			// repetitive log spam
    			switch {
    			case err == images.ErrImagePullBackOff:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    			cache.iamSTSPolicyMap.Store(k, v)
    			return true
    		})
    
    		cache.updatedAt = time.Now()
    	}
    
    	return nil
    }
    
    // IAMStoreSys contains IAMStorageAPI to add higher-level methods on the storage
    // layer.
    type IAMStoreSys struct {
    	IAMStorageAPI
    
    	group *singleflight.Group
    }
    
    // HasWatcher - returns if the storage system has a watcher.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Signatures are used to assess the _provenance_ of a dependency (it tells who signed the artifacts, which usually corresponds to who produced it).
    
    As enabling signature verification usually means a higher level of security, you might want to replace checksum verification with signature verification.
    
    [WARNING]
    ====
    Signatures _can_ also be used to assess the integrity of a dependency similarly to checksums.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/time/time.go

    // and the underlying hardware.
    // On Unix, the resolution is ~1ms.
    // On Windows version 1803 and newer, the resolution is ~0.5ms.
    // On older Windows versions, the default resolution is ~16ms, but
    // a higher resolution may be requested using [golang.org/x/sys/windows.TimeBeginPeriod].
    package time
    
    import (
    	"errors"
    	_ "unsafe" // for go:linkname
    )
    
    // A Time represents an instant in time with nanosecond precision.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	// optionally, gcController.bgScanCredit. Lower values give a more
    	// accurate assist ratio and make it more likely that assists will
    	// successfully steal background credit. Higher values reduce memory
    	// contention.
    	gcCreditSlack = 2000
    
    	// gcAssistTimeSlack is the nanoseconds of mutator assist time that
    	// can accumulate on a P before updating gcController.assistTime.
    	gcAssistTimeSlack = 5000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. okhttp/api/okhttp.api

    public final class okhttp3/MultipartBody : okhttp3/RequestBody {
    	public static final field ALTERNATIVE Lokhttp3/MediaType;
    	public static final field Companion Lokhttp3/MultipartBody$Companion;
    	public static final field DIGEST Lokhttp3/MediaType;
    	public static final field FORM Lokhttp3/MediaType;
    	public static final field MIXED Lokhttp3/MediaType;
    	public static final field PARALLEL Lokhttp3/MediaType;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    		// address).
    		procBrk := sbrk0()
    
    		// If we ask for the end of the data segment but the
    		// operating system requires a little more space
    		// before we can start allocating, it will give out a
    		// slightly higher pointer. Except QEMU, which is
    		// buggy, as usual: it won't adjust the pointer
    		// upward. So adjust it upward a little bit ourselves:
    		// 1/4 MB to get away from the running binary image.
    		p := firstmoduledata.end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/runtime/map.go

    	// during map writes and thus no one else can observe the map during that time).
    	emptyRest      = 0 // this cell is empty, and there are no more non-empty cells at higher indexes or overflows.
    	emptyOne       = 1 // this cell is empty
    	evacuatedX     = 2 // key/elem is valid.  Entry has been evacuated to first half of larger table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // It will insert each item in `left` list to `right` list. In most cases, the 2 lists will be interleaved.
    // The relative order of left and right are guaranteed to be kept.
    // They have higher precedence than the order in the live list.
    // The place for a item in `left` is found by:
    // scan from the place of last insertion in `right` to the end of `right`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	fakeRuntime.SetFakeSandboxes(fakeSandboxes)
    
    	actual, err := m.GetPods(ctx, false)
    	assert.NoError(t, err)
    
    	assert.Len(t, actual, 3)
    
    	// Verify that the pods are sorted by their creation time (newest/biggest timestamp first)
    	assert.Equal(t, uint64(createdTimestamps[2]), actual[0].CreatedAt)
    	assert.Equal(t, uint64(createdTimestamps[0]), actual[1].CreatedAt)
    	assert.Equal(t, uint64(createdTimestamps[1]), actual[2].CreatedAt)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top