Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for methods_ (0.12 sec)

  1. tests/integration/pilot/common/routing.go

    							check.OK(),
    							check.ResponseHeaders(map[string]string{
    								"Access-Control-Allow-Origin":  "cors.com",
    								"Access-Control-Allow-Methods": "POST,GET",
    								"Access-Control-Allow-Headers": "X-Foo-Bar,X-Foo-Baz",
    								"Access-Control-Max-Age":       "86400",
    							})),
    					}
    				}(),
    			},
    			{
    				name: "get",
    				opts: func() echo.CallOptions {
    					return echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(text, sect)
    	if ctxt.IsAIX() && ctxt.IsExternal() {
    		// Setting runtime.text has a real symbol prevents ld to
    		// change its base address resulting in wrong offsets for
    		// reflect methods.
    		u := ldr.MakeSymbolUpdater(text)
    		u.SetAlign(sect.Align)
    		u.SetSize(8)
    	}
    
    	if (ctxt.DynlinkingGo() && ctxt.IsDarwin()) || (ctxt.IsAIX() && ctxt.IsExternal()) {
    		ldr.SetSymSect(etext, sect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    	c.execCtxCalled = true
    	return c.fc.ExecContext(ctx, q, args)
    }
    
    // TestQueryExecContextOnly ensures drivers only need to implement QueryContext
    // and ExecContext methods.
    func TestQueryExecContextOnly(t *testing.T) {
    	// Ensure connection does not implement non-context interfaces.
    	var connType driver.Conn = &ctxOnlyConn{}
    	if _, ok := connType.(driver.Execer); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    //
    // A subclass is expected to call `PrepareConvert` first to perform necessary
    // preparation over the graph and also certain internal bookkeeping data.
    // Afterwards the other protected methods can be called.
    class ImporterBase {
     protected:
      explicit ImporterBase(
          const FunctionLibraryDefinition& flib, const GraphDebugInfo& debug_info,
          const GraphImportConfig& specs, mlir::ModuleOp module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top