Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for testDiv (0.74 sec)

  1. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0#0 : tensor<* x !quant.any<i16:f32>>
    }
    
    // -----
    
    // CHECK-LABEL: testDiv
    func.func @testDiv(tensor<? x i32>, tensor<? x i32>) -> tensor<? x i32> {
    ^bb0(%arg0: tensor<? x i32>, %arg1: tensor<? x i32>):
      // CHECK: tfl.div %arg0, %arg1 {fused_activation_function = "RELU6"}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    	}
    
    	chains, err := leaf.Verify(opts)
    
    	if test.errorCallback == nil && err != nil {
    		if runtime.GOOS == "windows" && strings.HasSuffix(testenv.Builder(), "-2008") && err.Error() == "x509: certificate signed by unknown authority" {
    			testenv.SkipFlaky(t, 19564)
    		}
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if test.errorCallback != nil {
    		if useSystemRoots && test.systemLax {
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

    import org.gradle.util.internal.VersionNumber
    
    import static org.gradle.testkit.runner.TaskOutcome.FROM_CACHE
    import static org.gradle.testkit.runner.TaskOutcome.NO_SOURCE
    import static org.gradle.testkit.runner.TaskOutcome.SKIPPED
    import static org.gradle.testkit.runner.TaskOutcome.SUCCESS
    import static org.gradle.testkit.runner.TaskOutcome.UP_TO_DATE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    // End-to-end serving tests
    
    package http_test
    
    import (
    	"bufio"
    	"bytes"
    	"compress/gzip"
    	"compress/zlib"
    	"context"
    	"crypto/tls"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"log"
    	"math/rand"
    	"mime/multipart"
    	"net"
    	. "net/http"
    	"net/http/httptest"
    	"net/http/httptrace"
    	"net/http/httputil"
    	"net/http/internal"
    	"net/http/internal/testcert"
    	"net/url"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    	// Can't check the signature here without a package cycle.
    }
    
    func TestImports(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in -short mode")
    	}
    	testenv.MustHaveGoRun(t)
    
    	if out, err := exec.Command(testenv.GoToolPath(t), "run", "x509_test_import.go").CombinedOutput(); err != nil {
    		t.Errorf("failed to run x509_test_import.go: %s\n%s", err, out)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sql
    
    import (
    	"context"
    	"database/sql/driver"
    	"errors"
    	"fmt"
    	"internal/race"
    	"internal/testenv"
    	"math/rand"
    	"reflect"
    	"runtime"
    	"slices"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    )
    
    func init() {
    	type dbConn struct {
    		db *DB
    		c  *driverConn
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    // license that can be found in the LICENSE file.
    
    package reflect_test
    
    import (
    	"bytes"
    	"encoding/base64"
    	"flag"
    	"fmt"
    	"go/token"
    	"internal/abi"
    	"internal/goarch"
    	"internal/testenv"
    	"io"
    	"math"
    	"math/rand"
    	"net"
    	"os"
    	. "reflect"
    	"reflect/internal/example1"
    	"reflect/internal/example2"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.testing.jacoco.tasks.rules.JacocoViolationRulesContainer.isFailOnViolation()> does not have raw return type assignable to org.gradle.api.provider.Property in (JacocoViolationRulesContainer.java:0)
    Method <org.gradle.testkit.runner.UnexpectedBuildResultException.getBuildResult()> does not have raw return type assignable to org.gradle.api.provider.Provider in (UnexpectedBuildResultException.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top