Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for Executer (0.39 sec)

  1. src/database/sql/sql.go

    }
    
    // ExecContext executes a query that doesn't return rows.
    // For example: an INSERT and UPDATE.
    func (tx *Tx) ExecContext(ctx context.Context, query string, args ...any) (Result, error) {
    	dc, release, err := tx.grabConn(ctx)
    	if err != nil {
    		return nil, err
    	}
    	return tx.db.execDC(ctx, dc, release, query, args)
    }
    
    // Exec executes a query that doesn't return rows.
    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. cmd/object-handlers_test.go

    	if err != nil {
    		t.Fatalf("Failed to create HTTP request for NewMultipart Request: <ERROR> %v", err)
    	}
    	// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    	// Call the ServeHTTP to executes the registered handler.
    	apiRouter.ServeHTTP(rec, req)
    	// Assert the response code with the expected status.
    	if rec.Code != http.StatusOK {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	c.Assert(err, nil)
    
    	// execute the HTTP request.
    	response, err = s.client.Do(request)
    
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	request, err = newTestSignedRequest(http.MethodGet, getGetObjectURL(s.endPoint, bucketName, "my-object-directory/"),
    		0, nil, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    
    	// execute the HTTP request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

        server.enqueue(mockResponse.build())
    
        client.newCall(request).execute().use {
          it.body.bytes()
        }
        return client.newCall(request).execute()
      }
    
      private operator fun get(url: HttpUrl): Response {
        val request =
          Request.Builder()
            .url(url)
            .build()
        return client.newCall(request).execute()
      }
    
      private fun writeFile(
        directory: Path,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  5. okhttp-android/src/main/baseline-prof.txt

    HSPLandroidx/arch/core/executor/ArchTaskExecutor;-><init>()V
    HSPLandroidx/arch/core/executor/ArchTaskExecutor;->getInstance()Landroidx/arch/core/executor/ArchTaskExecutor;
    HSPLandroidx/arch/core/executor/DefaultTaskExecutor$1;-><init>(Landroidx/arch/core/executor/DefaultTaskExecutor;)V
    HSPLandroidx/arch/core/executor/DefaultTaskExecutor;-><init>()V
    HSPLandroidx/arch/core/executor/DefaultTaskExecutor;->isMainThread()Z
    HSPLandroidx/arch/core/executor/TaskExecutor;-><init>()V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    InitializeResourcesP extends AbstractContainerIni { public void InitializeResourcesP(); public void execute(ContainerInitializat) throws ContainerInitializat; } org/codehaus/plexus/container/initialization/InitializeSystemProp.class package org.codehaus.plexus.container.initialization; public synchronized class InitializeSystemProp extends AbstractContainerIni { public void InitializeSystemProp(); public void execute(ContainerInitializat) throws ContainerInitializat; } org/codehaus/plexus/container/initia...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    InitializeResourcesP extends AbstractContainerIni { public void InitializeResourcesP(); public void execute(ContainerInitializat) throws ContainerInitializat; } org/codehaus/plexus/container/initialization/InitializeSystemProp.class package org.codehaus.plexus.container.initialization; public synchronized class InitializeSystemProp extends AbstractContainerIni { public void InitializeSystemProp(); public void execute(ContainerInitializat) throws ContainerInitializat; } org/codehaus/plexus/container/initia...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // For more about gofmt, see 'go doc cmd/gofmt'.
    // For more about specifying packages, see 'go help packages'.
    //
    // The -n flag prints commands that would be executed.
    // The -x flag prints commands as they are executed.
    //
    // The -mod flag's value sets which module download mode
    // to use: readonly or vendor. See 'go help modules' for more.
    //
    // To run gofmt with specific options, run gofmt itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    //
    // The main concepts are:
    // G - goroutine.
    // M - worker thread, or machine.
    // P - processor, a resource that is required to execute Go code.
    //     M must have an associated P to execute Go code, however it can be
    //     blocked or in a syscall w/o an associated P.
    //
    // Design doc at https://golang.org/s/go11sched.
    
    // Worker thread parking/unparking.
    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. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    InitializeResourcesP extends AbstractContainerIni { public void InitializeResourcesP(); public void execute(ContainerInitializat) throws ContainerInitializat; } org/codehaus/plexus/container/initialization/InitializeSystemProp.class package org.codehaus.plexus.container.initialization; public synchronized class InitializeSystemProp extends AbstractContainerIni { public void InitializeSystemProp(); public void execute(ContainerInitializat) throws ContainerInitializat; } org/codehaus/plexus/container/initia...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
Back to top