Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Raisin (0.13 sec)

  1. src/os/signal/doc.go

    and save any existing signal handler. If a signal is delivered to a
    non-Go thread, it will act as described above, except that if there is
    an existing non-Go signal handler, that handler will be installed
    before raising the signal.
    
    # Windows
    
    On Windows a ^C (Control-C) or ^BREAK (Control-Break) normally cause
    the program to exit. If Notify is called for [os.Interrupt], ^C or ^BREAK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. configure.py

          one from the check_success function.
        resolve_symlinks: (Bool) Translate symbolic links into the real filepath.
        n_ask_attempts: (Integer) Number of times to query for valid input before
          raising an error and quitting.
    
      Returns:
        [String] The value of var_name after querying for input.
    
      Raises:
        UserInputError: if a query has been attempted n_ask_attempts times without
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            assertTrue(future.isCancelled());
            if (future.wasInterrupted()) {
              // We were cancelled, it is possible that setFuture could have succeeded too.
              assertThat(numSuccessfulSetCalls.get()).isIn(Range.closed(1, 2));
            } else {
              assertThat(numSuccessfulSetCalls.get()).isEqualTo(1);
            }
          } else {
            assertThat(numSuccessfulSetCalls.get()).isEqualTo(1);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            assertTrue(future.isCancelled());
            if (future.wasInterrupted()) {
              // We were cancelled, it is possible that setFuture could have succeeded too.
              assertThat(numSuccessfulSetCalls.get()).isIn(Range.closed(1, 2));
            } else {
              assertThat(numSuccessfulSetCalls.get()).isEqualTo(1);
            }
          } else {
            assertThat(numSuccessfulSetCalls.get()).isEqualTo(1);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  5. src/time/format.go

    		}
    		day = d
    	} else {
    		if month < 0 {
    			month = int(January)
    		}
    		if day < 0 {
    			day = 1
    		}
    	}
    
    	// Validate the day of the month.
    	if day < 1 || day > daysIn(Month(month), year) {
    		return Time{}, newParseError(alayout, avalue, "", value, ": day out of range")
    	}
    
    	if z != nil {
    		return Date(year, Month(month), day, hour, min, sec, nsec, z), nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. RELEASE.md

            error reporting for `tf.distribute.MultiWorkerMirroredStrategy`.
            Specifically, for the type of interruption with advance notice, it
            automatically saves a checkpoint, exits the program without raising an
            unrecoverable error, and restores the progress when training restarts.
    
    *   `tf.math`:
    
        *   Added `tf.math.approx_max_k` and `tf.math.approx_min_k` which are the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ## 0.110.0
    
    ### Breaking Changes
    
    * 🐛 Fix unhandled growing memory for internal server errors, refactor dependencies with `yield` and `except` to require raising again as in regular Python. PR [#11191](https://github.com/tiangolo/fastapi/pull/11191) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_AsinOp : TF_Op<"Asin", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the trignometric inverse sine of x element-wise.";
    
      let description = [{
    The `tf.math.asin` operation returns the inverse of `tf.math.sin`, such that
    if `y = tf.math.sin(x)` then, `x = tf.math.asin(y)`.
    
    **Note**: The output of `tf.math.asin` will lie within the invertible range
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top