Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for Seal (0.07 sec)

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

        Value constant_val = add_op.getRhs();
        if (!matchPattern(constant_val, m_Constant(&added_value))) {
          // The constant may be preceded by QDQs in models with QDQ format, so we
          // should set it to the real constant.
          auto dq = dyn_cast_or_null<DequantizeOp>(constant_val.getDefiningOp());
          if (!dq) return failure();
          auto q = dyn_cast_or_null<QuantizeOp>(dq.getInput().getDefiningOp());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    					res.Body.Close()
    				}
    				wg.Done()
    			}
    		}()
    	}
    
    	// Make sure all the request come back, one way or another.
    	wg.Wait()
    }
    
    // TestTransportHeadResponses verifies that we deal with Content-Lengths
    // with no bodies properly
    func TestTransportHeadResponses(t *testing.T) { run(t, testTransportHeadResponses) }
    func testTransportHeadResponses(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

     public:
      using OpConversionPattern::OpConversionPattern;
    
      // Helper params for representing the transpose params for the "canonicalized"
      // output to the real output.
      struct TransposeParams {
        std::vector<int64_t> permutation;
        // The following are the "canonicalized" output shape with offset dims.
        std::vector<int64_t> canonicalized_output_shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // day : 2014-01-30 Charleston Road Registry Inc.
    day
    
    // dclk : 2014-11-20 Charleston Road Registry Inc.
    dclk
    
    // dds : 2015-05-07 Registry Services, LLC
    dds
    
    // deal : 2015-06-25 Amazon Registry Services, Inc.
    deal
    
    // dealer : 2014-12-22 Intercap Registry Inc.
    dealer
    
    // deals : 2014-05-22 Binky Moon, LLC
    deals
    
    // degree : 2014-03-06 Dog Beach, LLC
    degree
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    ---
    ` + httpVirtualServiceTmpl,
    		opts: echo.CallOptions{
    			Count: 1,
    			Port: echo.Port{
    				Protocol: protocol.HTTP,
    			},
    			HTTP: echo.HTTP{
    				// In real world, this may be set by a downstream LB that terminates the TLS
    				Headers: headers.New().With(headers.XForwardedProto, "https").Build(),
    			},
    			Check: check.OK(),
    		},
    		setupOpts: fqdnHostHeader,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    		mp.cgoCallers = new(cgoCallers)
    	}
    	mProfStackInit(mp)
    }
    
    // mProfStackInit is used to eagerly initialize stack trace buffers for
    // profiling. Lazy allocation would have to deal with reentrancy issues in
    // malloc and runtime locks for mLockProfile.
    // TODO(mknyszek): Implement lazy allocation if this becomes a problem.
    func mProfStackInit(mp *m) {
    	if debug.profstackdepth == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // CHECK: "tfl.real"(%arg0)
      %0 = "tfl.real"(%arg0): (tensor<? x complex<f64>>) -> tensor<?xf64>
      func.return %0 : tensor<?xf64>
    }
    
    // -----
    
    func.func @testRealWrongShape(%arg0: tensor<3 x complex<f64>>) -> tensor<4xf32> {
      // expected-error @+1 {{requires the same shape for all operands and results}}
      %0 = "tfl.real"(%arg0): (tensor<3 x complex<f64>>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    func (b *Builder) Do(ctx context.Context, root *Action) {
    	ctx, span := trace.StartSpan(ctx, "exec.Builder.Do ("+root.Mode+" "+root.Target+")")
    	defer span.Done()
    
    	if !b.IsCmdList {
    		// If we're doing real work, take time at the end to trim the cache.
    		c := cache.Default()
    		defer func() {
    			if err := c.Close(); err != nil {
    				base.Fatalf("go: failed to trim cache: %v", err)
    			}
    		}()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      prepare-kube-proxy-manifest-variables "${src_file}"
    
      cp "${src_file}" /etc/kubernetes/manifests
    }
    
    # Replaces the variables in the etcd manifest file with the real values, and then
    # copy the file to the manifest dir
    # $1: value for variable 'suffix'
    # $2: value for variable 'port'
    # $3: value for variable 'server_port'
    # $4: value for variable 'cpulimit'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    		for !tx.isDone() {
    			time.Sleep(pollDuration)
    		}
    	}
    	defer func() { hookTxGrabConn = nil }()
    
    	// This call will grab the connection and cancel the context
    	// after it has done so. Code after must deal with the canceled state.
    	_, err = tx.QueryContext(ctx, "SELECT|people|name|")
    	if err != nil {
    		t.Fatalf("expected error %v but got %v", nil, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top