Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 647 for Verifiers (0.26 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    }
    
    // A Verifiers is a collection of known verifier keys.
    type Verifiers interface {
    	// Verifier returns the Verifier associated with the key
    	// identified by the name and hash.
    	// If the name, hash pair is unknown, Verifier should return
    	// an UnknownVerifierError.
    	Verifier(name string, hash uint32) (Verifier, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	didLookup uint32
    
    	// one-time initialized data
    	initOnce   sync.Once
    	initErr    error          // init error, if any
    	name       string         // name of accepted verifier
    	verifiers  note.Verifiers // accepted verifiers (just one, but Verifiers for note.Open)
    	tileReader tileReader
    	tileHeight int
    	nosumdb    string
    
    	record    parCache // cache of record lookup, keyed by path@vers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tfrt_ops.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests for TensorFlow TFRT ops with custom verifiers.
    
    //===--------------------------------------------------------------------===//
    //  Test TF operations (tf.*)
    //===--------------------------------------------------------------------===//
    
    // CHECK-LABEL: func @testPwStreamResults
    func.func @testPwStreamResults(%arg0: tensor<f32>, %arg1: tensor<f32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 06:13:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. Makefile

    	@echo "Installing stringer" && go install -v golang.org/x/tools/cmd/stringer@latest
    
    crosscompile: ## cross compile minio
    	@(env bash $(PWD)/buildscripts/cross-compile.sh)
    
    verifiers: lint check-gen
    
    check-gen: ## check for updated autogenerated files
    	@go generate ./... >/dev/null
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    ### Test MinIO server changes
    
    After your code changes, make sure
    
    - To add test cases for the new code. If you have questions about how to do it, please ask on our [Slack](https://slack.min.io) channel.
    - To run `make verifiers`
    - To squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request.
    - To run `make test` and `make build` completes.
    
    ### Commit changes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/converter_gen.cc

        llvm::cl::values(clEnumValN(OpConv, "gen-operator-converters",
                                    "Generate operator converters"),
                         clEnumValN(RuntimeVerify, "gen-runtime-verifiers",
                                    "Generate TFLite runtime verifiers")));
    
    // Returns the associated option name for the given op definition.
    static inline std::string GetOperatorOptionName(const Record &def) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

          This pass is useful for pass pipelines that have already consumed
          all the tf_saved_model information, and now want to do further
          transformations without tf_saved_model's verifiers kicking in.
    
          For example, this would remove the semantics attribute from module:
    
            module attributes {tf_saved_model.semantics} [...]
    
          so the result becomes just
    
            module [...]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/tests/ops.mlir

    // RUN: tfr-opt %s -verify-diagnostics -split-input-file | tfr-opt | FileCheck %s
    
    // Tests for types, ops with custom constraints, verifiers, printer or parser
    // methods.
    
    // CHECK-LABEL: tensor_type_noconstraint
    func.func private @tensor_type_noconstraint() -> !tfr.tensor
    
    // -----
    
    // CHECK-LABEL: tensor_type
    func.func private @tensor_type() -> !tfr.tensor<T>
    
    // -----
    
    // CHECK-LABEL: tensor_list_type_noconstraint
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    	CAContentProvider dynamiccertificates.CAContentProvider
    }
    
    // GetClientVerifyOptionFn provides verify options for your authenticator while respecting the preferred order of verifiers.
    func (s *ClientCertAuthenticationOptions) GetClientCAContentProvider() (dynamiccertificates.CAContentProvider, error) {
    	if s.CAContentProvider != nil {
    		return s.CAContentProvider, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  10. 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)
Back to top