Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 152 for Boundaries (0.17 sec)

  1. pilot/pkg/xds/monitoring.go

    	configSizeBytes = monitoring.NewDistribution(
    		"pilot_xds_config_size_bytes",
    		"Distribution of configuration sizes pushed to clients",
    		// Important boundaries: 10K, 1M, 4M, 10M, 40M
    		// 4M default limit for gRPC, 10M config will start to strain system,
    		// 40M is likely upper-bound on config sizes supported.
    		[]float64{1, 10000, 1000000, 4000000, 10000000, 40000000},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    	r         io.ReadCloser
    	decoder   *json.Decoder
    	remaining []byte
    }
    
    // NewJSONFramedReader returns an io.Reader that will decode individual JSON objects off
    // of a wire.
    //
    // The boundaries between each frame are valid JSON objects. A JSON parsing error will terminate
    // the read.
    func NewJSONFramedReader(r io.ReadCloser) io.ReadCloser {
    	return &jsonFrameReader{
    		r:       r,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/finisher/finisher.go

    	// waits up to 5 minutes for the child goroutine to return.
    	resultCh := make(chan *result, 1)
    
    	go func() {
    		result := &result{}
    
    		// panics don't cross goroutine boundaries, so we have to handle ourselves
    		defer func() {
    			reason := recover()
    			if reason != nil {
    				// do not wrap the sentinel ErrAbortHandler panic value
    				if reason != http.ErrAbortHandler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 14:20:33 UTC 2021
    - 6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/popper.min.js

    iers,'hide','preventOverflow'))return e;var t=e.offsets.reference,o=D(e.instance.modifiers,function(e){return'preventOverflow'===e.name}).boundaries;if(t.bottom<o.top||t.left>o.right||t.top>o.bottom||t.right<o.left){if(!0===e.hide)return e;e.hide=!0,e.attributes['x-out-of-boundaries']=''}else{if(!1===e.hide)return e;e.hide=!1,e.attributes['x-out-of-boundaries']=!1}return e}},computeStyle:{order:850,enabled:!0,fn:function(e,t){var o=t.x,n=t.y,i=e.offsets.popper,r=D(e.instance.modifiers,function(e...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 20.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    For example:
    
    ----
    $ gradle build -Dorg.gradle.unsafe.isolated-projects=true
    ----
    
    When enabled, Gradle will fail the build whenever build logic attempts to cross project boundaries and access the model of another project.
    Gradle collects all of these access problems in the configuration cache report, in the same way as other problems.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            expect:
            compare("1.0", "1_0") == 0
            compare("1_0", "1-0") == 0
            compare("1-0", "1+0") == 0
            compare("1.a.2", "1a2") == 0 // number-word and word-number boundaries are considered separators
        }
    
        def "leading zeros in numeric parts are ignored"() {
            expect:
            compare("01.0", "1.0") == 0
            compare("1.0", "01.0") == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. src/runtime/trace/annotation.go

    	s := &Task{id: id}
    	return context.WithValue(pctx, traceContextKey{}, s), s
    
    	// We allocate a new task even when
    	// the tracing is disabled because the context and task
    	// can be used across trace enable/disable boundaries,
    	// which complicates the problem.
    	//
    	// For example, consider the following scenario:
    	//   - trace is enabled.
    	//   - trace.WithRegion is called, so a new context ctx
    	//     with a new region is created.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginRegistry.java

        }
    
        @Nullable
        private PluginImplementation<?> lookup(PluginId pluginId, ClassLoader classLoader) {
            // Don't go up the parent chain.
            // Don't want to risk classes crossing “scope” boundaries and being non collectible.
    
            if (pluginId.getNamespace() == null) {
                PluginId qualified = pluginId.withNamespace(DefaultPluginManager.CORE_PLUGIN_NAMESPACE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ZincScalaCompilerIntegrationTest.groovy

            house.lastModified() != old(house.lastModified())
            other.lastModified() == old(other.lastModified())
        }
    
        def "compiles Scala incrementally across project boundaries"() {
            file("settings.gradle") << """include 'a', 'b'"""
            // overwrite the build file from setup
            file("build.gradle").text = """
                subprojects {
                    apply plugin: 'scala'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

            able to discuss the full details of what you're working on.
    
    
            But Guava aims to provide features that are useful across boundaries of projects, companies,
            or even industries &mdash; utilities useful for a sizable proportion of all Java programmers
            everywhere. If you can give enough detail such that any of us can imagine coming across
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top