Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,068 for spill (0.04 sec)

  1. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    //
    // CheckFiles returns an error if the returned CheckedFiles does not describe
    // a valid module zip file (according to CheckedFiles.Err). The returned
    // CheckedFiles is still populated when an error is returned.
    //
    // Note that CheckFiles will not open any files, so Create may still fail when
    // CheckFiles is successful due to I/O errors and reported size differences.
    func CheckFiles(files []File) (CheckedFiles, error) {
    	cf, _, _ := checkFiles(files)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_controller_test.go

    	assertMonitors(t, qc, "pods", "deployments")
    
    	// Remove the error from being returned and see if the quota sync is still working
    	fakeDiscoveryClient.setPreferredResources(serverResources, nil)
    
    	err = expectSyncNotBlocked(fakeDiscoveryClient, &qc.workerLock)
    	if err != nil {
    		t.Fatalf("Expected quotacontroller.Sync to still be running but it is blocked: %v", err)
    	}
    	assertMonitors(t, qc, "pods", "deployments")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/named.go

    //    type lazily using a provided load function.
    //  - After instantiating, we lazily expand the underlying type and methods
    //    (note that instances may be created while still in the process of
    //    type-checking the original type declaration).
    //
    // In cases 3 and 4 this lazy construction may also occur concurrently, due to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. pkg/volume/util/fsquota/quota_linux.go

    		// we can't clear it.  That's not good.
    		err = setQuotaOnDir(path, projid, 0)
    		if err != nil {
    			klog.V(3).Infof("Attempt to clear quota failed: %v", err)
    		}
    		// Even if clearing the quota failed, we still need to
    		// try to remove the project ID, or that may be left dangling.
    		err1 := removeProjectID(path, projid)
    		if err1 != nil {
    			klog.V(3).Infof("Attempt to remove quota ID from system files failed: %v", err1)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	return ValidateStructuralWithOptions(fldPath, s, ValidationOptions{
    		// This would widen the schema for CRD if set to true, so first few releases will still
    		// not admit any. But it can still be used by libraries and
    		// declarative validation for native types
    		AllowNestedAdditionalProperties:                   false,
    		AllowNestedXValidations:                           false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/ads.go

    		// If there is no locality in the registry then use the one sent as part of the discovery request.
    		// This is not preferable as only the connected Pilot is aware of this proxies location, but it
    		// can still help provide some client-side Envoy context when load balancing based on location.
    		proxy.Locality = &core.Locality{
    			Region:  proxy.XdsNode.Locality.GetRegion(),
    			Zone:    proxy.XdsNode.Locality.GetZone(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/concepts.md

    ### Bigger Errors - Crashes
    
    Nevertheless, there might be cases where we write some code that **crashes the entire application** making Uvicorn and Python crash. 💥
    
    And still, you would probably not want the application to stay dead because there was an error in one place, you probably want it to **continue running** at least for the *path operations* that are not broken.
    
    ### Restart After Crash
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Verify.java

     * of {@link java.util.Formatter} specifiers. However, note that if the number of arguments does not
     * match the number of occurrences of {@code "%s"} in the format string, {@code Verify} will still
     * behave as expected, and will still include all argument values in the error message; the message
     * will simply not be formatted exactly as intended.
     *
     * <h3>More information</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  9. pkg/registry/core/serviceaccount/storage/token.go

    					}
    					switch {
    					case errors.IsNotFound(err):
    						// if the referenced Node object does not exist, we still embed just the pod name into the
    						// claims so that clients still have some indication of what node a pod is assigned to when
    						// inspecting a token (even if the UID is not present).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                if (strictlyMatchingCapabilities.size() == 1) {
                    return singleVariant(strictlyMatchingCapabilities);
                } else if (strictlyMatchingCapabilities.size() > 1) {
                    // there are still more than one candidate, but this time we know only a subset strictly matches the required attributes
                    // so we perform another round of selection on the remaining candidates
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top