Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 8,419 for capped (0.21 sec)

  1. src/net/netip/netip.go

    	if x >= 0x1000 {
    		b = append(b, digits[x>>12])
    	}
    	if x >= 0x100 {
    		b = append(b, digits[x>>8&0xf])
    	}
    	if x >= 0x10 {
    		b = append(b, digits[x>>4&0xf])
    	}
    	return append(b, digits[x&0xf])
    }
    
    // appendHexPad appends the fully padded hex string representation of x to b.
    func appendHexPad(b []byte, x uint16) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    0046          ; mapped                 ; 0066          # 1.1  LATIN CAPITAL LETTER F
    0047          ; mapped                 ; 0067          # 1.1  LATIN CAPITAL LETTER G
    0048          ; mapped                 ; 0068          # 1.1  LATIN CAPITAL LETTER H
    0049          ; mapped                 ; 0069          # 1.1  LATIN CAPITAL LETTER I
    004A          ; mapped                 ; 006A          # 1.1  LATIN CAPITAL LETTER J
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    				r, _ := utf8.DecodeRuneInString(s[start:])
    				err = runeError(r)
    			}
    			continue
    		case mapped, deviation:
    			b = append(b, s[k:start]...)
    			b = info(v).appendMapping(b, s[start:i])
    		case ignored:
    			b = append(b, s[k:start]...)
    			// drop the rune
    		case unknown:
    			b = append(b, s[k:start]...)
    			b = append(b, "\ufffd"...)
    		}
    		k = i
    	}
    	if k == 0 {
    		// No changes so far.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/configuration/validating_webhook_manager.go

    	accessors := make([]webhook.WebhookAccessor, 0, size)
    
    	for _, c := range configurations {
    		cachedConfigurationAccessors, ok := v.configurationsCache.Load(c.Name)
    		if ok {
    			// Pick an already cached webhookAccessor
    			accessors = append(accessors, cachedConfigurationAccessors.([]webhook.WebhookAccessor)...)
    			continue
    		}
    
    		// webhook names are not validated for uniqueness, so we check for duplicates and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. pkg/credentialprovider/plugin/plugin.go

    func (p *pluginProvider) getCachedCredentials(image string) (credentialprovider.DockerConfig, bool, error) {
    	p.Lock()
    	if p.clock.Now().After(p.lastCachePurge.Add(cachePurgeInterval)) {
    		// NewExpirationCache purges expired entries when List() is called
    		// The expired entry in the cache is removed only when Get or List called on it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemInfoOsMemoryInfoTest.groovy

    Unevictable:           0 kB
    Mlocked:               0 kB
    SwapTotal:             0 kB
    SwapFree:              0 kB
    Dirty:                20 kB
    Writeback:             0 kB
    AnonPages:      17189100 kB
    Mapped:            24008 kB
    Shmem:              1312 kB
    Slab:            1291916 kB
    SReclaimable:    1236196 kB
    SUnreclaim:        55720 kB
    KernelStack:        2888 kB
    PageTables:        41200 kB
    NFS_Unstable:          0 kB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/namedrulewithoperations.go

    // If called multiple times, values provided by each call will be appended to the ResourceNames field.
    func (b *NamedRuleWithOperationsApplyConfiguration) WithResourceNames(values ...string) *NamedRuleWithOperationsApplyConfiguration {
    	for i := range values {
    		b.ResourceNames = append(b.ResourceNames, values[i])
    	}
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:52 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder.go

    		if err != nil {
    			return
    		}
    		if !boundVolumesSatisfied {
    			reasons = append(reasons, ErrReasonNodeConflict)
    		}
    		if !unboundVolumesSatisfied {
    			reasons = append(reasons, ErrReasonBindConflict)
    		}
    		if !sufficientStorage {
    			reasons = append(reasons, ErrReasonNotEnoughSpace)
    		}
    		if !boundPVsFound {
    			reasons = append(reasons, ErrReasonPVNotExist)
    		}
    	}()
    
    	defer func() {
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         * Sets the length of time that dynamic versions will be cached.
         *
         * <p>Gradle keeps a cache of dynamic version =&gt; resolved version (ie 2.+ =&gt; 2.3). By default, these cached values are kept for 24 hours, after which the cached entry is expired
         * and the dynamic version is resolved again.</p>
         * <p>Use this method to provide a custom expiry time after which the cached value for any dynamic version will be expired.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  10. docs/debugging/xl-meta/main.go

    			partIdx, ok := partNums[part]
    			if !ok {
    				partIdx = len(names)
    				partNums[part] = partIdx
    				names = append(names, nil)
    				files = append(files, make(map[string][]string))
    			}
    			names[partIdx] = append(names[partIdx], k)
    			files[partIdx][k] = append(files[partIdx][k], file)
    		}
    	}
    	if len(files) == 0 {
    		return nil
    	}
    	for part, partIdx := range partNums {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top