Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 1,485 for corerest (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/common/python/testing_test.py

    from tensorflow.python.platform import test
    
    
    class TestingTest(test.TestCase):
    
      def test_parameter_combinations(self):
        """Tests that parameter_combinations returns correct combinations."""
        test_parameters = [{
            'shapes': [
                [3, 3],
                [3, None],
            ],
            'has_bias': [True, False],
        }]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/device_attribute_to_launch.mlir

    // RUN: tf-opt %s -split-input-file -tf-device-attribute-to-launch | FileCheck %s
    
    // Tests that single TensorFlow op with device attribute is wrapped in `tf_device.launch` with the correct device assigned.
    // CHECK-LABEL: func @single_op_launch
    func.func @single_op_launch() {
      // CHECK: "tf_device.launch"
      // CHECK: device = "CPU:0"
      // CHECK: "tf.opA"
      // CHECK-NOT device
      // CHECK: tf_device.return
      "tf.opA"() {device = "CPU:0"} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/net/lookup_windows_test.go

    		if err != nil {
    			// The DNSError type stores the error as a string, so it cannot wrap the
    			// original error code and we cannot check for it here. However, we can at
    			// least use its error string to identify the correct localized text for
    			// the error to skip.
    			var DNS_ERROR_RCODE_SERVER_FAILURE syscall.Errno = 9002
    			if strings.HasSuffix(err.Error(), DNS_ERROR_RCODE_SERVER_FAILURE.Error()) {
    				testenv.SkipFlaky(t, 38111)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. test/fixedbugs/issue5373.go

    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    func check(n int) {
    	// When n == 0, i is untouched by the range loop.
    	// Picking an initial value of -1 for i makes the
    	// "want" calculation below correct in all cases.
    	i := -1
    	s := make([]byte, n)
    	for i = range s {
    		s[i] = 0
    	}
    	if want := n - 1; i != want {
    		fmt.Printf("index after range with side-effect = %d want %d\n", i, want)
    		os.Exit(1)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/gateway-secrets.yaml

      servers:
      - port:
          number: 443
          name: https
          protocol: HTTPS
        tls:
          mode: SIMPLE
          credentialName: "httpbin-credential" # Correct credential, should not produce an error message
        hosts:
        - "httpbin.example.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: defaultgateway-bogusCredentialName
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. tests/integration/ambient/cacert_rotation_test.go

    	if err != nil {
    		t.Errorf("failed to decode intermediate certificate: %v", err)
    	}
    	intermediateX509 := parseCert(t, intermediateCert)
    	// verify the correct intermediate cert is in the certificate chain
    	if intermediateX509.SerialNumber.String() != caX590.SerialNumber.String() {
    		return fmt.Errorf("intermediate certificate serial numbers do not match: got %v, wanted %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_solaris_amd64.c

    	setg_gcc = setg;
    	if (getcontext(&ctx) != 0)
    		perror("runtime/cgo: getcontext failed");
    	g->stacklo = (uintptr_t)ctx.uc_stack.ss_sp;
    
    	// Solaris processes report a tiny stack when run with "ulimit -s unlimited".
    	// Correct that as best we can: assume it's at least 1 MB.
    	// See golang.org/issue/12210.
    	if(ctx.uc_stack.ss_size < 1024*1024)
    		g->stacklo -= 1024*1024 - ctx.uc_stack.ss_size;
    
    	// Sanity check the results now, rather than getting a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 14:57:16 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/div_test.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is a self-contained test for a copy of
    // the division algorithm in build-goboring.sh,
    // to verify that is correct. The real algorithm uses u128
    // but this copy uses u32 for easier testing.
    // s/32/128/g should be the only difference between the two.
    //
    // This is the dumbest possible division algorithm,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishWarIntegTest.groovy

            then: "module is published with artifacts"
            def ivyModule = javaLibrary(ivyRepo.module("org.gradle.test", "publishTest", "1.9"))
            ivyModule.assertPublishedAsWebModule()
    
            and: "correct configurations and dependencies declared"
            with (ivyModule.parsedIvy) {
                configurations.keySet() == ["default", "master"] as Set
                configurations.default.extend == ["master"] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/low_bit_utils.cc

      std::vector<char> unpacked_buffer;
      unpacked_buffer.reserve(num_elements);
    
      for (uint8_t value : src_buffer) {
        // Cast to signed before right-shifting to ensure correct sign extension
        unpacked_buffer.push_back(static_cast<int8_t>(value << 4) >> 4);
        unpacked_buffer.push_back(static_cast<int8_t>(value) >> 4);
      }
    
      // The last element might be a padded zero, so check and pop if needed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 04 19:11:58 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top