Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for insight (0.5 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    				// when using apiserver's default total server concurrency of 600 (--max-requests-inflight=400, --max-mutating-requests-inflight=200).
    				// This ensures that clusters with relatively high inflight requests will continue to use a max seats of 10
    				// while clusters with lower inflight requests will use max seats no greater than nominalCL/handSize.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  2. docs/compression/README.md

    # Compression Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    MinIO server allows streaming compression to ensure efficient disk space usage.
    Compression happens inflight, i.e objects are compressed before being written to disk(s).
    MinIO uses [`klauspost/compress/s2`](https://github.com/klauspost/compress/tree/master/s2)
    streaming compression due to its stability and performance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    	"k8s.io/kubernetes/test/utils/ktesting"
    	"k8s.io/utils/ptr"
    )
    
    func TestModel(t *testing.T) {
    	testcases := map[string]struct {
    		slices   resourceSliceLister
    		claims   assumeCacheLister
    		inFlight map[types.UID]resourceapi.ResourceClaimStatus
    
    		wantResources resources
    		wantErr       bool
    	}{
    		"empty": {},
    
    		"slice-list-error": {
    			slices: sliceError("slice list error"),
    
    			wantErr: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		f.lock.Lock()
    		defer f.lock.Unlock()
    		if f.inflight < f.capacity {
    			f.inflight++
    			canExecute = true
    		}
    	}()
    	if !canExecute {
    		return
    	}
    
    	if f.preExecutePanic {
    		panic("pre-exec-panic")
    	}
    	execFn()
    	if f.postExecutePanic {
    		panic("post-exec-panic")
    	}
    
    	f.lock.Lock()
    	defer f.lock.Unlock()
    	f.inflight--
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_dataclasses/test_tutorial003.py

                        "description": "The kombucha mushroom people's favorite",
                    },
                    {"name": "Pad Thai", "description": None},
                    {
                        "name": "Lonely Night",
                        "description": "The mostests lonliest nightiest of allest",
                    },
                ],
            },
        ]
    
    
    @needs_pydanticv2
    def test_openapi_schema():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. src/net/main_test.go

    		}
    		gss = append(gss, stack)
    	}
    	slices.Sort(gss)
    	return gss
    }
    
    func printInflightSockets() {
    	sos := sw.Sockets()
    	if len(sos) == 0 {
    		return
    	}
    	fmt.Fprintf(os.Stderr, "Inflight sockets:\n")
    	for s, so := range sos {
    		fmt.Fprintf(os.Stderr, "%v: %v\n", s, so)
    	}
    	fmt.Fprintf(os.Stderr, "\n")
    }
    
    func printSocketStats() {
    	sts := sw.Stats()
    	if len(sts) == 0 {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            def projectModelsShortNames = remapValues(projectModels) { it.shortModelName }
    
            // Do not extract left side into a variable to get power assert insights
            assert remapValues(projectModelsShortNames) { it.size() } == expectedProjectModelsCounts
    
            for (def modelExpectation in modelExpectations) {
                def buildTreePath = modelExpectation.path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_experimental.h

    // maximum number of in flight async nodes. Enqueuing of additional async ops
    // after the limit is reached blocks until some inflight nodes finishes.
    // The effect is bounding the memory held by inflight TensorHandles that are
    // referenced by the inflight nodes.
    // A recommended value has not been established.
    // A value of 0 removes the limit, which is the behavior of TensorFlow 2.11.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    Develocity provides much richer data compared to what can be obtained from CI servers.
    For example, you can get insights into the execution of single tasks, how many tasks were retrieved from the cache, how long it took to download from the cache, the properties that were used to calculate the cache key and more.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

        }
    
        private void addBuildScanMessage(ContextImpl context) {
            context.appendResolution(output -> runWithOption(output, LONG_OPTION, " to get full insights."));
        }
    
        private boolean isGradleEnterprisePluginApplied() {
            return gradleEnterprisePluginManager != null && gradleEnterprisePluginManager.isPresent();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top