Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for asStatement (0.15 sec)

  1. src/database/sql/sql.go

    }
    
    // PrepareContext creates a prepared statement for later queries or executions.
    // Multiple queries or executions may be run concurrently from the
    // returned statement.
    // The caller must call the statement's [*Stmt.Close] method
    // when the statement is no longer needed.
    //
    // The provided context is used for the preparation of the statement, not for the
    // execution of the statement.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    	    end in a terminating statement.</li>
    	</ul>
    </li>
    
    <li>
    	A <a href="#Labeled_statements">labeled statement</a> labeling
    	a terminating statement.
    </li>
    </ol>
    
    <p>
    All other statements are not terminating.
    </p>
    
    <p>
    A <a href="#Blocks">statement list</a> ends in a terminating statement if the list
    is not empty and its final non-empty statement is terminating.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    	if prepares := numPrepares(t, db) - prepares0; prepares != 1 {
    		t.Errorf("executed %d Prepare statements; want 1", prepares)
    	}
    }
    
    // Test that tx.Stmt called with a statement already
    // associated with tx as argument re-prepares the same
    // statement again.
    func TestTxStmtFromTxStmtRePrepares(t *testing.T) {
    	db := newTestDB(t, "")
    	defer closeDB(t, db)
    	exec(t, db, "CREATE|t1|name=string,age=int32")
    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. cmd/object-handlers_test.go

    			instanceType, bucketName, objectName, err)
    	}
    
    	// ExecObjectLayerAPIAnonTest - Calls the HTTP API handler using the anonymous request, validates the ErrAccessDeniedResponse,
    	// sets the bucket policy using the policy statement generated from `getWriteOnlyObjectStatement` so that the
    	// unsigned request goes through and its validated again.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //		set the mode for coverage analysis.
    //		The default is "set" unless -race is enabled,
    //		in which case it is "atomic".
    //		The values:
    //		set: bool: does this statement run?
    //		count: int: how many times does this statement run?
    //		atomic: int: count, but correct in multithreaded tests;
    //			significantly more expensive.
    //		Sets -cover.
    //	-coverpkg pattern1,pattern2,pattern3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/reflect/value.go

    	}
    
    	// Tell the runtime it can now depend on the return values
    	// being properly initialized.
    	*retValid = true
    
    	// Clear the scratch space and put it back in the pool.
    	// This must happen after the statement above, so that the return
    	// values will always be scanned by someone.
    	typedmemclr(methodFrameType, methodFrame)
    	methodFramePool.Put(methodFrame)
    
    	// See the comment in callReflect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. cmd/server_test.go

    	bucketPolicyBuf := `{"Version":"2012-10-17","Statement":[{"Action":["s3:GetBucketLocation","s3:ListBucket"],"Effect":"Allow","Principal":{"AWS":["*"]},"Resource":["arn:aws:s3:::%s"]},{"Action":["s3:GetObject"],"Effect":"Allow","Principal":{"AWS":["*"]},"Resource":["arn:aws:s3:::%s/this*"]}]}`
    
    	// generate a random bucket Name.
    	bucketName := getRandomBucketName()
    	// create the policy statement string with the randomly generated bucket name.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    	R_RISCV_GNU_VTINHERIT R_RISCV = 41 /* GNU C++ vtable hierarchy */
    	R_RISCV_GNU_VTENTRY   R_RISCV = 42 /* GNU C++ vtable member usage */
    	R_RISCV_ALIGN         R_RISCV = 43 /* Alignment statement */
    	R_RISCV_RVC_BRANCH    R_RISCV = 44 /* PC-relative branch offset */
    	R_RISCV_RVC_JUMP      R_RISCV = 45 /* PC-relative jump offset */
    	R_RISCV_RVC_LUI       R_RISCV = 46 /* Absolute address */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    		*(*uintptr)(unsafe.Pointer(newg.stack.lo)) = 0
    	}
    	return newg
    }
    
    // Create a new g running fn.
    // Put it on the queue of g's waiting to run.
    // The compiler turns a go statement into a call to this.
    func newproc(fn *funcval) {
    	gp := getg()
    	pc := getcallerpc()
    	systemstack(func() {
    		newg := newproc1(fn, gp, pc, false, waitReasonZero)
    
    		pp := getg().m.p.ptr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                "type": "string"
              },
              "fieldPath": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
Back to top