Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 182 for VerifierT (0.24 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize.cc

                                              /*VerifierT=*/void, RootOpT> {
      explicit StableHloQuantizationBase(MLIRContext* ctx)
          : StableHloQuantizationPattern<ConcreteT, quantfork::QuantizeCastOp,
                                         quantfork::DequantizeCastOp,
                                         /*VerifierT=*/void, RootOpT>(ctx) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 07:08:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

          min -= kNearZeroTolerance;
          max += kNearZeroTolerance;
        }
      }
    };
    
    template <typename VerifierT>
    bool UsedBy(Operation* op) {
      for (Operation* user : op->getUsers()) {
        if (llvm::isa_and_nonnull<VerifierT>(user)) return true;
      }
      return false;
    }
    
    template <typename VerifierT>
    void CreateVerifier(Operation* quantizing_op, Operation* quantized_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

                                     /*VerifierT=*/void, RootOpT> {
      explicit TFQuantizationBase(MLIRContext* ctx,
                                  const QuantPassSpec& quant_params)
          : QuantizationPattern<ConcreteT, quantfork::QuantizeCastOp,
                                quantfork::DequantizeCastOp,
                                /*VerifierT=*/void, RootOpT>(ctx, quant_params) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

    //
    // * `QuantizeOpT` should have only one operand.
    // * `DequantizeOpT` should have only one result.
    template <typename ConcreteT, typename QuantizeOpT, typename DequantizeOpT,
              typename VerifierT, typename RootOpT = DequantizeOpT,
              typename = std::enable_if_t<
                  QuantizeOpT::template hasTrait<OpTrait::OneOperand>() &&
                  DequantizeOpT::template hasTrait<OpTrait::OneResult>()>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. operator/pkg/verifier/verifier.go

    		kclient:          client,
    	}
    
    	for _, opt := range options {
    		opt(&verifier)
    	}
    
    	return &verifier, nil
    }
    
    func (v *StatusVerifier) Colorize() {
    	v.successMarker = color.New(color.FgGreen).Sprint(v.successMarker)
    	v.failureMarker = color.New(color.FgRed).Sprint(v.failureMarker)
    }
    
    // Verify implements Verifier interface. Here we check status of deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    }
    
    // initVerifier creates a new ID token verifier for the given configuration and issuer URL.  On success, calls setVerifier with the
    // resulting verifier.
    func initVerifier(ctx context.Context, config *oidc.Config, iss string, audiences sets.Set[string]) (*idTokenVerifier, error) {
    	provider, err := oidc.NewProvider(ctx, iss)
    	if err != nil {
    		return nil, fmt.Errorf("init verifier failed: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt

            """.trimIndent(),
          )
        assertThat(verifier.verify("foo.com", session)).isFalse()
        assertThat(verifier.verify("a.foo.com", session)).isFalse()
        assertThat(verifier.verify("bar.com", session)).isFalse()
        assertThat(verifier.verify("a.bar.com", session)).isFalse()
        assertThat(verifier.verify("\u82b1\u5b50.co.jp", session)).isFalse()
        assertThat(verifier.verify("a.\u82b1\u5b50.co.jp", session)).isFalse()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/fallback_query_param_verifier.go

    )
    
    // fallbackQueryParamVerifier encapsulates the primary Verifier that
    // is invoked, and the secondary/fallback Verifier.
    type fallbackQueryParamVerifier struct {
    	primary   Verifier
    	secondary Verifier
    }
    
    var _ Verifier = &fallbackQueryParamVerifier{}
    
    // NewFallbackQueryParamVerifier returns a new Verifier which will invoke the
    // initial/primary Verifier. If the primary Verifier is "NotFound", then the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 19:13:54 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top