Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for VerifierT (0.15 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. 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)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/StepSpec.groovy

            Class<T> operationType,
            Consumer<TestBuildOperationRunner.Log.TypedRecord<D, R>> verifier
        ) {
            assert buildOperationRunner.log.records.size() == 1
            interaction {
                verifier.accept(buildOperationRunner.log.mostRecent(operationType))
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. cmd/bitrot-whole.go

    }
    
    // Implementation to verify bitrot for the whole file.
    type wholeBitrotReader struct {
    	disk       StorageAPI
    	volume     string
    	filePath   string
    	verifier   *BitrotVerifier // Holds the bit-rot info
    	tillOffset int64           // Affects the length of data requested in disk.ReadFile depending on Read()'s offset
    	buf        []byte          // Holds bit-rot verified data
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/BuildOperationBackedScriptCompilationHandler.java

            buildOperationRunner.run(new RunnableBuildOperation() {
                @Override
                public void run(BuildOperationContext context) {
                    delegate.compileToDir(source, classLoader, classesDir, metadataDir, transformer, scriptBaseClass, verifier);
                    context.setResult(RESULT);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/VerificationFailure.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.verification.verifier;
    
    import org.gradle.internal.logging.text.TreeFormatter;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    public interface VerificationFailure {
    
        File getFilePath();
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/ScriptClassCompiler.java

    public interface ScriptClassCompiler {
        <T extends Script, M> CompiledScript<T, M> compile(ScriptSource source, Class<T> scriptBaseClass, Object target, ClassLoaderScope targetScope, CompileOperation<M> transformer, Action<? super ClassNode> verifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/InvalidSignature.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.verification.verifier;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.logging.text.TreeFormatter;
    
    import java.io.File;
    
    @NonNullApi
    public class InvalidSignature extends AbstractVerificationFailure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top