Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Percent (0.59 sec)

  1. pilot/pkg/networking/core/listener_test.go

    				Sampling:         0,
    			},
    			out: &hcm.HttpConnectionManager_Tracing{
    				MaxPathTagLength: nil,
    				ClientSampling: &xdstype.Percent{
    					Value: 100.0,
    				},
    				RandomSampling: &xdstype.Percent{
    					Value: 80.0,
    				},
    				OverallSampling: &xdstype.Percent{
    					Value: 100.0,
    				},
    				CustomTags: customTracingTags(),
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. CREDITS

          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
          "You" (or "Your") shall mean an individual or Legal Entity
          exercising permissions granted by this License.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    		o.metricsRecorder = recorder
    	}
    }
    
    // WithPluginMetricsSamplePercent sets the percentage of plugin metrics to be sampled.
    func WithPluginMetricsSamplePercent(percent int) Option {
    	return func(o *priorityQueueOptions) {
    		o.pluginMetricsSamplePercent = percent
    	}
    }
    
    var defaultPriorityQueueOptions = priorityQueueOptions{
    	clock:                             clock.RealClock{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    	}
    	return nil
    }
    
    // ValidatePercent checks that percent is in range
    func ValidatePercent(val int32) error {
    	if val < 0 || val > 100 {
    		return fmt.Errorf("percentage %v is not in range 0..100", val)
    	}
    	return nil
    }
    
    // validatePercentage checks if the specified fractional percentage is valid.
    func validatePercentage(percentage *networking.Percent) error {
    	if percentage != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. src/net/http/server.go

    //     For example, in 1.22 the pattern "/%61" matches the path "/a" ("%61" being the URL escape sequence for "a"),
    //     but in 1.21 it would match only the path "/%2561" (where "%25" is the escape for the percent sign).
    //   - When matching patterns to paths, in 1.22 each segment of the path is unescaped; in 1.21, the entire path is unescaped.
    //     This change mostly affects how paths with %2F escapes adjacent to slashes are treated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.trove4j)               { version { strictly("1.0.20200330") }}
            api(libs.jna)                   { version { strictly("5.12.1") }}
            // TODO upgrade this AGP version to recent version
            api(libs.agp)                   { version { strictly("3.0.0"); because("We use 3.0.0 for internal performance test") }}
            api(libs.xbeanReflect)          { version { strictly("3.18") }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. cmd/data-scanner.go

    	s.newCache.Info.LastUpdate = UTCNow()
    	s.newCache.Info.NextCycle = cache.Info.NextCycle
    	return s.newCache, nil
    }
    
    // sendUpdate() should be called on a regular basis when the newCache contains more recent total than previously.
    // May or may not send an update upstream.
    func (f *folderScanner) sendUpdate() {
    	// Send at most an update every minute.
    	if f.updates == nil || time.Since(f.lastUpdate) < time.Minute {
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    					ContainerID: emptyContainerID,
    				}},
    			},
    		},
    		// For terminated container:
    		// * If there is no recent start error record, State should be Terminated, LastTerminationState should be retrieved from
    		// second latest terminated status;
    		// * If there is recent start error record, State should be Waiting, LastTerminationState should be retrieved from latest
    		// terminated status;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Expected type of objects in the underlying cache.
    	objectType reflect.Type
    	// Used for logging, to disambiguate *unstructured.Unstructured (CRDs)
    	groupResource schema.GroupResource
    
    	// "sliding window" of recent changes of objects and the current state.
    	watchCache *watchCache
    	reflector  *cache.Reflector
    
    	// Versioner is used to handle resource versions.
    	versioner storage.Versioner
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	w.endIndex++
    }
    
    // resizeCacheLocked resizes the cache if necessary:
    // - increases capacity by 2x if cache is full and all cached events occurred within last eventFreshDuration.
    // - decreases capacity by 2x when recent quarter of events occurred outside of eventFreshDuration(protect watchCache from flapping).
    func (w *watchCache) resizeCacheLocked(eventTime time.Time) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top