Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 407 for unwrapped (0.14 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      // This is done after the first round of optimization to make sure all the
      // min/max operands of the tf.FakeQuant* are constants to be matched. The
      // following round of optimization will folding the unwrapped
      // tf.FakeQuant* ops with the weight constants.
      if (failed(ConvertFakeQuantOps(func, ctx, use_fake_quant_num_bits_))) {
        signalPassFailure();
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

       * {@code o} is an instance of {@code Entry}, it is wrapped using {@link #unmodifiableEntry} to
       * protect against a possible nefarious equals method.
       *
       * <p>Note that {@code c} is the backing (delegate) collection, rather than the forwarding
       * collection.
       *
       * @param c the delegate (unwrapped) collection of map entries
       * @param o the object that might be contained in {@code c}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

       * {@code o} is an instance of {@code Entry}, it is wrapped using {@link #unmodifiableEntry} to
       * protect against a possible nefarious equals method.
       *
       * <p>Note that {@code c} is the backing (delegate) collection, rather than the forwarding
       * collection.
       *
       * @param c the delegate (unwrapped) collection of map entries
       * @param o the object that might be contained in {@code c}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/device_attribute_to_launch.mlir

      // CHECK: "tf.opA"
      "tf.opA"() {device = ""} : () -> tensor<i1>
      func.return
    }
    
    // Tests that an op not in tf dialect (tf_device.launch) with device attribute is not wrapped in `tf_device.launch`.
    // Also tests that a `tf_device.launch` is not rewrapped.
    // CHECK-LABEL: func @non_tf_op
    func.func @non_tf_op() {
      // CHECK: "tf_device.launch"
      // CHECK-NOT "tf_device.launch"
      // CHECK: "tf.opA"
      "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // After [Server.Shutdown] or [Server.Close], the returned error is [ErrServerClosed].
    func (srv *Server) Serve(l net.Listener) error {
    	if fn := testHookServerServe; fn != nil {
    		fn(srv, l) // call hook with unwrapped listener
    	}
    
    	origListener := l
    	l = &onceCloseListener{Listener: l}
    	defer l.Close()
    
    	if err := srv.setupHTTP2_Serve(); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				if len(errs) != 0 {
    					t.Errorf("expected no errors, but got: %v", errs)
    				}
    			})
    		})
    	}
    }
    
    // Show that we cant just use oldSelf as if it was unwrapped
    func TestOptionalOldSelfIsOptionalType(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, apiextensionsfeatures.CRDValidationRatcheting, true)
    
    	cases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. src/fmt/errors_test.go

    		wantText:   "inner error with added context",
    		wantUnwrap: wrapped,
    	}, {
    		err:        fmt.Errorf("%s %w %v", "prefix", wrapped, "suffix"),
    		wantText:   "prefix inner error suffix",
    		wantUnwrap: wrapped,
    	}, {
    		err:        fmt.Errorf("%[2]s: %[1]w", wrapped, "positional verb"),
    		wantText:   "positional verb: inner error",
    		wantUnwrap: wrapped,
    	}, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 18:40:40 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/error_test.go

    	"fmt"
    	"testing"
    )
    
    type errWrapper struct {
    	wrapped error
    }
    
    func (w errWrapper) Unwrap() error {
    	return w.wrapped
    }
    func (w errWrapper) Error() string {
    	return fmt.Sprintf("wrapped: %v", w.wrapped)
    }
    
    type errNotWrapper struct {
    	wrapped error
    }
    
    func (w errNotWrapper) Error() string {
    	return fmt.Sprintf("wrapped: %v", w.wrapped)
    }
    
    func TestInterrupted(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/TestFailureProgressEventCrossVersionTest.groovy

            collector.failures.size() == 1
            collector.failures[0] instanceof TestAssertionFailure
    
            TestAssertionFailure failure = collector.failures[0]
            failure.message == "This is a wrapped assertion error"
        }
    
        def "Wrapped assertion errors are emitted as test failure events using JUnit 5"() {
            given:
            setupJUnit5()
            file('src/test/java/org/gradle/JUnitTest.java') << '''
                package org.gradle;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 17:52:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/raise-custom-ops.mlir

    // WRAPPED-NEXT: tf_executor.graph {
    // WRAPPED-NEXT:   tf_executor.island wraps "tf.Const"() <{value = dense<1.000000e+00> : tensor<186xf32>}> {device = ""} : () -> tensor<186xf32>
    // WRAPPED-NEXT:   tf_executor.island wraps "tf.Const"() <{value = dense<2.000000e+00> : tensor<186xf32>}> {device = ""} : () -> tensor<186xf32>
    // WRAPPED-NEXT:   tf_executor.island wraps "tfl.custom_tf"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top