Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 118 for verified$ (0.16 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/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)
  3. src/os/stat_test.go

    	}
    }
    
    // testIsDir verifies that fi refers to directory.
    func testIsDir(t *testing.T, path string, fi fs.FileInfo) {
    	t.Helper()
    	if !fi.IsDir() {
    		t.Errorf("%q should be a directory", path)
    	}
    	if fi.Mode()&fs.ModeSymlink != 0 {
    		t.Errorf("%q should not be a symlink", path)
    	}
    }
    
    // testIsSymlink verifies that fi refers to symlink.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. plugin/pkg/admission/namespace/autoprovision/admission_test.go

    	for _, action := range mockClient.Actions() {
    		if action.GetVerb() == "create" && action.GetResource().Resource == "namespaces" {
    			return true
    		}
    	}
    	return false
    }
    
    // TestAdmission verifies a namespace is created on create requests for namespace managed resources
    func TestAdmission(t *testing.T) {
    	namespace := "test"
    	mockClient := newMockClientForTest([]string{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_gomodcache_vendor.txt

    # This test verifies that GOMODCACHE does not affect whether checksums are embedded
    # with vendored files.
    # See issue #46400
    [short] skip 'builds and links a binary twice'
    go mod tidy
    go mod vendor
    
    go build -mod=vendor
    go version -m example$GOEXE
    cp stdout version-m.txt
    
    env GOMODCACHE=$WORK${/}modcache
    go build -mod=vendor
    go version -m example$GOEXE
    cmp stdout version-m.txt
    
    -- go.mod --
    module example
    go 1.22
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 17:19:18 UTC 2024
    - 568 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. tests/integration/security/sds_ingress/quic/ingress_test.go

    		}).
    		Run()
    }
    
    // TestTlsGatewaysWithQUIC deploys multiple TLS gateways with SDS enabled, and creates kubernetes that store
    // private key and server certificate for each TLS gateway. Verifies that client can communicate by
    // using both QUIC and TCP/TLS
    func TestTlsGatewaysWithQUIC(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_ppc64_linker_funcs.txt

    # register save and restore functions as defined in
    # section 2.3.3.1 of the PPC64 ELFv2 ABI when linking
    # external objects most likely compiled with gcc's
    # -Os option.
    #
    # Verifies golang.org/issue/52366 for linux/ppc64le
    [!GOOS:linux] skip
    [!compiler:gc] skip
    [!cgo] skip
    [!GOARCH:ppc64le] skip
    
    go build -ldflags='-linkmode=internal'
    exec ./abitest
    stdout success
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. 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)
  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