Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 510 for necessarily (0.18 sec)

  1. guava-testlib/src/com/google/common/testing/NullPointerTester.java

       * explicit {@code @Nullable} annotation (see <a
       * href="https://github.com/google/guava/issues/1819">#1819</a>).
       *
       * <p>It is not necessary to consider visibility, return type, or type parameter declarations. The
       * declaration of a method with the same name and formal parameters as {@link Object#equals} that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

         */
        public abstract boolean isSuccessful();
    
        /**
         * Return the result if the represented operation was successful.
         * Throws the original failure otherwise (wrapped in an {@code UncheckedException} if necessary).
         */
        public abstract T get();
    
        /**
         * Return the result if the represented operation was successful or return the result of the given function.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            file("first/gradlew").md5Hash == file("second/gradlew").md5Hash
            file("first/gradlew.bat").md5Hash == file("second/gradlew.bat").md5Hash
        }
    
        def "generated wrapper does not change unnecessarily"() {
            def wrapperJar = file("gradle/wrapper/gradle-wrapper.jar")
            def wrapperProperties = file("gradle/wrapper/gradle-wrapper.properties")
            run "wrapper", "--gradle-version", "2.2.1", "--no-validate-url"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    <3> Declare this test suite uses JUnit Jupiter.  The framework's dependencies are automatically included.  It is always necessary to explicitly configure the built-in `test` suite even if JUnit4 is desired.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/passes.h

        const absl::flat_hash_set<std::string>& nodes_blocklist = {});
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDefaultQuantizePass();
    
    // Overloading of CreateQuantizePass which takes only necessary flags to reduce
    // the binary size.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateQuantizePass(
        bool verify_numeric = false, bool whole_model_verify = false,
        bool legacy_float_scale = false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/crypto/tls/auth.go

    	0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
    	0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
    	0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
    }
    
    // signedMessage returns the pre-hashed (if necessary) message to be signed by
    // certificate keys in TLS 1.3. See RFC 8446, Section 4.4.3.
    func signedMessage(sigHash crypto.Hash, context string, transcript hash.Hash) []byte {
    	if sigHash == directSigning {
    		b := &bytes.Buffer{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

      fun maxDataLength(): Int = maxFrameSize
    
      /**
       * `source.length` may be longer than the max length of the variant's data frame. Implementations
       * must send multiple frames as necessary.
       *
       * @param source the buffer to draw bytes from. May be null if byteCount is 0.
       * @param byteCount must be between 0 and the minimum of `source.length` and [maxDataLength].
       */
      @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                MatchResult result;
                if (explicitlyRequested) {
                    // some capabilities are explicitly required (in other words, we're not _necessarily_ looking for the default capability
                    // so we need to filter the variants
                    result = providesAllCapabilities(targetComponent, explicitRequestedCapabilities, capabilities);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/Files.java

        }
      }
    
      /**
       * Creates any necessary but nonexistent parent directories of the specified file. Note that if
       * this operation fails it may have succeeded in creating some (but not all) of the necessary
       * parent directories.
       *
       * @throws IOException if an I/O error occurs, or if any necessary but nonexistent parent
       *     directories of the specified file could not be created.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

    // A pass that legalizes TF/XLA communication ops, propagate their respective
    // tokens (for ordering), and rewrite their respective functions and control
    // flow ops when necessary.
    // Note, this currently does not handle nested modules/functions or region based
    // ops other than certain control flow ops (`mhlo.if`, `mhlo.while`).
    class LegalizeTFCommunication
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top