Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for VerifierT (0.18 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        }
    
        /**
         * This supports painless invocation by the Verifier during embedded execution of the core ITs.
         * See <a href="http://maven.apache.org/shared/maven-verifier/xref/org/apache/maven/it/Embedded3xLauncher.html">
         * <code>Embedded3xLauncher</code> in <code>maven-verifier</code></a>
         *
         * @param args CLI args
         * @param workingDirectory working directory
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    	// Verify it is a regular file, otherwise subsequent Seek is
    	// undefined.
    	if !st.Mode().IsRegular() {
    		return 0, errIsNotRegular
    	}
    
    	if verifier == nil {
    		n, err = file.ReadAt(buffer, offset)
    		return int64(n), err
    	}
    
    	h := verifier.algorithm.New()
    	if _, err = io.Copy(h, io.LimitReader(file, offset)); err != nil {
    		return 0, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

            this.protocols = Collections.unmodifiableList(protocolsCopy)
          }
    
        /**
         * Sets the verifier used to confirm that response certificates apply to requested hostnames for
         * HTTPS connections.
         *
         * If unset, a default hostname verifier will be used.
         */
        fun hostnameVerifier(hostnameVerifier: HostnameVerifier) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/BUILD

        tbl_outs = [
            (
                ["--gen-operator-converters"],
                "operator_converters.inc",
            ),
            (
                ["--gen-runtime-verifiers"],
                "runtime_verifiers.inc",
            ),
        ],
        tblgen = ":converter-gen",
        td_file = "ir/tfl_ops.td",
        test = 1,
        deps = [
            ":tensorflow_lite_ops_td_files",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    //
    // It allows parsing and generating certificates, certificate signing
    // requests, certificate revocation lists, and encoded public and private keys.
    // It provides a certificate verifier, complete with a chain builder.
    //
    // The package targets the X.509 technical profile defined by the IETF (RFC
    // 2459/3280/5280), and as further restricted by the CA/Browser Forum Baseline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    #include "mlir/IR/Location.h"  // from @llvm-project
    #include "mlir/IR/OperationSupport.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    #include "mlir/IR/SymbolTable.h"  // from @llvm-project
    #include "mlir/IR/TypeUtilities.h"  // from @llvm-project
    #include "mlir/IR/Types.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $mul_out)]>;
    
    // Returns True if all users of this operation are in TF/TFL and don't need
    // shape exact matching. This prevents from removing cast on return values which
    // can break the verifier on function type mismatch.
    def AllUsersInTF : Constraint<CPred<[{
      llvm::all_of($0.getUsers(), [&](Operation *user) {
        auto name = user->getName().getDialectNamespace();
        return name == "tf" || name == "tfl";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top