Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 136 for retriable (0.29 sec)

  1. src/net/http/serve_test.go

    			}
    		}
    		// We don't expect any of the errors after this point to occur due
    		// to rstAvoidanceDelay being too short, so we use t.Errorf for those
    		// instead of returning a (retriable) error.
    
    		if handlerN > maxSize {
    			t.Errorf("expected max request body %d; got %d", maxSize, handlerN)
    		}
    		if requestSize > maxSize && handlerErr == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/flatbuffer_compatibility_test.cc

    }
    
    // Checks to make sure current schema in current code does not cause an
    // incompatibility.
    TEST(SchemaTest, TestCompatibility) {
      // Read file contents of schemas into strings
      // TODO(aselle): Need a reliable way to load files.
      std::string base_contents, current_contents;
      const char *base_filename = TFLITE_TF_PREFIX
          "compiler/mlir/lite/schema/schema_v3b.fbs";
      const char *current_filename =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/componentconfigs/kubelet_windows.go

    	mutatePaths(&kc.config, drive)
    	return nil
    }
    
    func mutatePaths(cfg *kubeletconfig.KubeletConfiguration, drive string) {
    	mutateStringField := func(name string, field *string) {
    		// filepath.IsAbs() is not reliable here in the Windows runtime, so check if the
    		// path starts with "/" instead. This means the path originated from a Unix node and
    		// is an absolute path.
    		if !strings.HasPrefix(*field, "/") {
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/Nested.java

     * If the element implements {@link org.gradle.api.Named}, then the property name is composed of {@link org.gradle.api.Named#getName()} and the index, e.g. {@code name$1}.
     * The ordering of the elements in the iterable is crucial for reliable up-to-date checks and caching.</p>
     *
     * <p>This annotation supports ${@link java.util.Map} values by treating each value of the map as a separate nested bean.
     * The keys of the map are used as property names.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 27 22:03:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    		Time: cbor.TimeRFC3339Nano,
    
    		// The decoder must be able to accept RFC3339 strings with or without tag 0 (e.g. by
    		// the end of time.Time -> JSON -> Unstructured -> CBOR, the CBOR encoder has no
    		// reliable way of knowing that a particular string originated from serializing a
    		// time.Time), so producing tag 0 has little use.
    		TimeTag: cbor.EncTagNone,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. docs/sts/etcd.md

    # etcd V3 Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines.
    
    ## Get started
    
    ### 1. Prerequisites
    
    - Docker 18.03 or above, refer here for [installation](https://docs.docker.com/install/).
    
    ### 2. Start etcd
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. pkg/kubelet/reason_cache.go

    //  1. The cache is not persisted.
    //  2. We use an LRU cache to avoid extra garbage collection work. This
    //     means that some entries may be recycled before a pod has been
    //     deleted.
    //
    // TODO(random-liu): Use more reliable cache which could collect garbage of failed pod.
    // TODO(random-liu): Move reason cache to somewhere better.
    type ReasonCache struct {
    	lock  sync.Mutex
    	cache *lru.Cache
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. src/os/removeall_noat.go

    			if numErr != reqSize {
    				break
    			}
    		}
    
    		// Removing files from the directory may have caused
    		// the OS to reshuffle it. Simply calling Readdirnames
    		// again may skip some entries. The only reliable way
    		// to avoid this is to close and re-open the
    		// directory. See issue 20841.
    		fd.Close()
    
    		if readErr == io.EOF {
    			break
    		}
    		// If Readdirnames returned an error, use it.
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/GradleUserHomeScopeFileTimeStampInspector.java

                        }
                    }
                } finally {
                    filesWithCurrentTimestamp.clear();
                }
            }
        }
    
        /**
         * Detects whether the file system has a reliable high precision timestamp.
         *
         * If `isCurrentTimestampHighPrecision` is in `millisecond` precision, then all file timestamps will have `millisecond` precision
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. cmd/bucket-quota.go

    		} else {
    			internalLogOnceIf(GlobalContext, errors.New("unable to retrieve usage information for bucket: %s, no reliable usage value available - quota will not be enforced"), "bucket-usage-empty-"+bucket)
    		}
    	}
    
    	if len(dui.BucketsUsage) > 0 {
    		bui, ok := dui.BucketsUsage[bucket]
    		if ok {
    			return bui, nil
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top