Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 136 for retriable (0.37 sec)

  1. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

        }
    
        /**
         * UT for <a href="https://issues.apache.org/jira/browse/MRESOLVER-314">MRESOLVER-314</a>.
         *
         * Generates random UUID string based versions and tries to sort them. While this test is not as reliable
         * as {@link #testCompareUuidVersionStringStream()}, it covers broader range and in case it fails it records
         * the failed array, so we can investigate more.
         */
        @Test
        void testCompareUuidRandom() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/helper.go

    	"k8s.io/kubernetes/pkg/kubelet/server/stats"
    )
    
    // defaultNetworkInterfaceName is used for collectng network stats.
    // This logic relies on knowledge of the container runtime implementation and
    // is not reliable.
    const defaultNetworkInterfaceName = "eth0"
    
    func cadvisorInfoToCPUandMemoryStats(info *cadvisorapiv2.ContainerInfo) (*statsapi.CPUStats, *statsapi.MemoryStats) {
    	cstat, found := latestContainerStats(info)
    	if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. internal/bucket/object/lock/lock.go

    }
    
    // Retention - bucket level retention configuration.
    type Retention struct {
    	Mode        RetMode
    	Validity    time.Duration
    	LockEnabled bool
    }
    
    // Retain - check whether given date is retainable by validity time.
    func (r Retention) Retain(created time.Time) bool {
    	t, err := UTCNowNTP()
    	if err != nil {
    		lockLogIf(context.Background(), err)
    		// Retain
    		return true
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/runtime/preempt.go

    		// be a simple read/decide/CAS loop that only fails if
    		// there's an active race. Once the CAS succeeds, we
    		// should queue up the preemption (which will require
    		// it to be reliable in the _Grunning case, not
    		// best-effort) and then sleep until we're notified
    		// that the goroutine is suspended.
    		if i == 0 {
    			nextYield = nanotime() + yieldDelay
    		}
    		if nanotime() < nextYield {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      // Store the custom attribute to restore the function name when loading it
      // back in the post calibration stage. As mentioned above, the above entry
      // function attribute is not reliable.
      call_op->setAttr(kOriginalStablehloEntryFunctionAttrName,
                       builder.getStringAttr(func_name));
    
      // Set the attribute to annotate this function call op as a quantizable spot.
      call_op->setAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    					and key are generated for the public address and saved to the directory specified by
    					--cert-dir
    				--tls-private-key-file string  File containing the default x509 private key matching --tls-cert-file.
    
    				(retrievable from "kube-apiserver --help" command)
    				(suggested by @deads2k)
    
    			see also:
    				- for the step 2, see: staging/src/k8s.io/client-go/transport/transport.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    = Testing Gradle plugins
    
    Testing plays a crucial role in the development process by ensuring reliable and high-quality software.
    This principle applies to build code, including Gradle plugins.
    
    == The sample project
    
    This section revolves around a sample project called the "URL verifier plugin".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/webhook/webhook_test.go

    		case 2:
    			// Internal server error
    			w.WriteHeader(http.StatusInternalServerError)
    			json.NewEncoder(w).Encode(apierrors.NewInternalError(fmt.Errorf("nope")))
    		case 3:
    			// HTTP error that is not retryable
    			w.WriteHeader(http.StatusNotAcceptable)
    			json.NewEncoder(w).Encode(apierrors.NewGenericServerResponse(http.StatusNotAcceptable, "get", gr, "testing", "nope", 0, false))
    		case 4:
    			// Successful request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/CompactHashSet.java

       *       simply switch over to use the JDK implementation wholesale if probable hash flooding is
       *       detected, sacrificing the compactness guarantee in very rare cases in exchange for much
       *       more reliable worst-case behavior.
       *   <li>null, if no entries have yet been added to the map
       * </ul>
       */
      @CheckForNull private transient Object table;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_arm.s

    	MOVW	$1003, R1
    	MOVW	R0, (R1)	// fail hard
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	wait+0(FP), R0
    	// We're done using the stack.
    	// Alas, there's no reliable way to make this write atomic
    	// without potentially using the stack. So it goes.
    	MOVW	$0, R1
    	MOVW	R1, (R0)
    	MOVW	$0, R0	// exit code
    	MOVW	$SYS_exit, R7
    	SWI	$0
    	MOVW	$1234, R0
    	MOVW	$1004, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top