Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for stackOverflow (0.24 sec)

  1. docs/pl/docs/help-fastapi.md

    Często pytający umieszczają tylko fragment kodu, niewystarczający do **odtworzenia problemu**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. docs/en/docs/help-fastapi.md

    In many cases they will only copy a fragment of the code, but that's not enough to **reproduce the problem**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. docs/de/docs/help-fastapi.md

    In vielen Fällen wird nur ein Fragment des Codes gepostet, aber das reicht nicht aus, um **das Problem zu reproduzieren**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/syscall/js/js_test.go

    		return nil
    	})
    	js.Global().Get("document").Call("getElementById", "myButton").Call("addEventListener", "click", cb)
    }
    
    // See
    // - https://developer.mozilla.org/en-US/docs/Glossary/Truthy
    // - https://stackoverflow.com/questions/19839952/all-falsey-values-in-javascript/19839953#19839953
    // - http://www.ecma-international.org/ecma-262/5.1/#sec-9.2
    func TestTruthy(t *testing.T) {
    	want := true
    	for _, key := range []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. pkg/kubelet/images/image_gc_manager_test.go

    	require.NoError(t, err)
    	assert.Len(images, 1)
    	assert.Len(fakeRuntime.ImageList, 2)
    
    	// Move clock by a lot, and the images should continue to not be garbage colleced
    	// See https://stackoverflow.com/questions/25065055/what-is-the-maximum-time-time-in-go
    	fakeClock.SetTime(time.Unix(1<<63-62135596801, 999999999))
    	images, err = manager.freeOldImages(ctx, images, fakeClock.Now(), oldStartTime)
    	require.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Range.java

       *     intersection
       * @since 27.0
       */
      public Range<C> gap(Range<C> otherRange) {
        /*
         * For an explanation of the basic principle behind this check, see
         * https://stackoverflow.com/a/35754308/28465
         *
         * In that explanation's notation, our `overlap` check would be `x1 < y2 && y1 < x2`. We've
         * flipped one part of the check so that we're using "less than" in both cases (rather than a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Range.java

       *     intersection
       * @since 27.0
       */
      public Range<C> gap(Range<C> otherRange) {
        /*
         * For an explanation of the basic principle behind this check, see
         * https://stackoverflow.com/a/35754308/28465
         *
         * In that explanation's notation, our `overlap` check would be `x1 < y2 && y1 < x2`. We've
         * flipped one part of the check so that we're using "less than" in both cases (rather than a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/Hashing.java

             * (https://github.com/google/guava/issues/6549). So we have to use asType() to change from
             * CRC32C to Checksum. This may carry some performance cost
             * (https://stackoverflow.com/a/22321671/28465), but I'd have to benchmark more carefully to
             * even detect it.
             */
            return MethodHandles.lookup()
                .findConstructor(clazz, methodType(void.class))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. hack/lib/util.sh

          return 0
        else
          sleep "$sleep_time"
          wait_time=$((wait_time-sleep_time))
        fi
      done
      return 1
    }
    
    # Example:  kube::util::trap_add 'echo "in trap DEBUG"' DEBUG
    # See: http://stackoverflow.com/questions/3338030/multiple-bash-traps-for-the-same-signal
    kube::util::trap_add() {
      local trap_add_cmd
      trap_add_cmd=$1
      shift
    
      for trap_add_name in "$@"; do
        local existing_cmd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. src/internal/poll/fd_windows.go

    	}
    	defer fd.readUnlock()
    	for {
    		if f(uintptr(fd.Sysfd)) {
    			return nil
    		}
    
    		// Use a zero-byte read as a way to get notified when this
    		// socket is readable. h/t https://stackoverflow.com/a/42019668/332798
    		o := &fd.rop
    		o.InitBuf(nil)
    		if !fd.IsStream {
    			o.flags |= windows.MSG_PEEK
    		}
    		_, err := execIO(o, func(o *operation) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top