Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for VerifierT (0.37 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/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)
  4. 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)
  5. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      }
      bool Verify(::flatbuffers::Verifier &verifier) const {
        return VerifyTableStart(verifier) &&
               VerifyOffset(verifier, VT_MIN) &&
               verifier.VerifyVector(min()) &&
               VerifyOffset(verifier, VT_MAX) &&
               verifier.VerifyVector(max()) &&
               VerifyOffset(verifier, VT_SCALE) &&
               verifier.VerifyVector(scale()) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  6. security/pkg/server/ca/authenticate/oidc.go

    		}
    		verifier = provider.Verifier(&oidc.Config{SkipClientIDCheck: true})
    	} else {
    		keySet := oidc.NewRemoteKeySet(context.Background(), jwksURL)
    		verifier = oidc.NewVerifier(issuer, keySet, &oidc.Config{SkipClientIDCheck: true})
    	}
    	return &JwtAuthenticator{
    		meshHolder: meshWatcher,
    		verifier:   verifier,
    		audiences:  jwtRule.Audiences,
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            CompileOperation<?> operation,
            Action<? super ClassNode> verifier,
            Class<T> scriptBaseClass
        ) {
            UnitOfWork unitOfWork = new GroovyScriptCompilationAndInstrumentation(
                templateId,
                sourceHashCode,
                classLoader,
                source,
                operation,
                verifier,
                scriptBaseClass,
                classLoaderHierarchyHasher,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    		}
    		if opts.Roots != nil && opts.Roots.systemPool {
    			platformChains, err := c.systemVerify(&opts)
    			// If the platform verifier succeeded, or there are no additional
    			// roots, return the platform verifier result. Otherwise, continue
    			// with the Go verifier.
    			if err == nil || opts.Roots.len() == 0 {
    				return platformChains, err
    			}
    		}
    	}
    
    	if opts.Roots == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. src/crypto/x509/root.go

    		systemRoots = nil
    	}
    }
    
    var x509usefallbackroots = godebug.New("x509usefallbackroots")
    
    // SetFallbackRoots sets the roots to use during certificate verification, if no
    // custom roots are specified and a platform verifier or a system certificate
    // pool is not available (for instance in a container which does not have a root
    // certificate bundle). SetFallbackRoots will panic if roots is nil.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pkg/spiffe/spiffe_test.go

    				}
    			}
    
    			verifier := NewPeerCertVerifier()
    			verifier.AddMappings(certMap)
    			if verifier == nil {
    				t.Fatalf("Failed to create peer cert verifier.")
    			}
    			client := &http.Client{
    				Timeout: time.Second,
    				Transport: &http.Transport{
    					TLSClientConfig: &tls.Config{
    						RootCAs:               verifier.GetGeneralCertPool(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top