Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 782 for run1 (0.06 sec)

  1. src/net/sendfile_test.go

    	}
    
    	b.Run("file-to-tcp", func(b *testing.B) { benchmarkSendFile(b, "tcp") })
    	b.Run("file-to-unix", func(b *testing.B) { benchmarkSendFile(b, "unix") })
    }
    
    func benchmarkSendFile(b *testing.B, proto string) {
    	for i := 0; i <= 10; i++ {
    		size := 1 << (i + 10)
    		bench := sendFileBench{
    			proto:     proto,
    			chunkSize: size,
    		}
    		b.Run(strconv.Itoa(size), bench.benchSendFile)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        /* metric description */
        "Track success/failure of MLIR pass runs when fallback used",
        /* metric field */ "status");
    
    auto* mlir_graph_optimization_pass_fallback_count = monitoring::Counter<1>::New(
        /* metric name */
        "/tensorflow/core/mlir_graph_optimization_pass_fallback_count",
        /* metric description */
        "Track success/failure of MLIR graph optimization pass runs when fallback "
        "used",
        /* metric field */ "status");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            val testTask = createTestTask(taskName, executer, sourceSet, testType) {}
            if (executer == defaultExecuter) {
                // The test task with the default executer runs with 'check'
                tasks.named("check").configure { dependsOn(testTask) }
            }
        }
        // Create a variant of the test suite to force realization of component metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/net/http/clientserver_test.go

    type TBRun[T any] interface {
    	testing.TB
    	Run(string, func(T)) bool
    }
    
    // run runs a client/server test in a variety of test configurations.
    //
    // Tests execute in HTTP/1.1 and HTTP/2 modes by default.
    // To run in a different set of configurations, pass a []testMode option.
    //
    // Tests call t.Parallel() by default.
    // To disable parallel execution, pass the testNotParallel option.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tfcompile.bzl

            freeze_name = "freeze_" + name
            freeze_file = freeze_name + ".pb"
    
            # First run tfcompile to generate the list of out_nodes.
            #
            # Here and below, we set CUDA_VISIBLE_DEVICES='' to prevent the code we
            # launch from using any GPUs which might be present.  This is important
            # because builds may run concurrently with tests, and tests need to be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/docker.md

    ```Dockerfile
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["fastapi", "run", "app/main.py", "--port", "80"]
    
    # If running behind a proxy like Nginx or Traefik add --proxy-headers
    # CMD ["fastapi", "run", "app/main.py", "--port", "80", "--proxy-headers"]
    ```
    
    </details>
    
    ## What is a Container
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. src/syscall/exec_linux_test.go

    			ContainerID: int(nobody),
    			HostID:      gid,
    			Size:        int(1),
    		}}
    
    		// Set credentials to run as user and group nobody.
    		cmd.SysProcAttr.Credential = &syscall.Credential{
    			Uid: nobody,
    			Gid: nobody,
    		}
    	}
    	if err := cmd.Run(); err != nil {
    		if testenv.SyscallIsNotSupported(err) {
    			t.Skipf("skipping: %v: %v", cmd, err)
    		}
    		t.Fatal(err.Error())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. src/os/exec/exec.go

    //		log.Fatal(err)
    //	}
    //	use(path)
    //
    // and
    //
    //	cmd := exec.Command("prog")
    //	if err := cmd.Run(); err != nil {
    //		log.Fatal(err)
    //	}
    //
    // These will not find and run ./prog or .\prog.exe,
    // no matter how the current path is configured.
    //
    // Code that always wants to run a program from the current directory
    // can be rewritten to say "./prog" instead of "prog".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			// Assert
    			if len(rcInstance.volumesFailedReconstruction) != 0 {
    				t.Errorf("Expected volumesFailedReconstruction to be empty, got %+v", rcInstance.volumesFailedReconstruction)
    			}
    			// Unmount runs in a go routine, wait for its finish
    			var lastErr error
    			err = retryWithExponentialBackOff(testOperationBackOffDuration, func() (bool, error) {
    				if err := verifyTearDownCalls(fakePlugin, tc.expectedUnmounts); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. cmd/prepare-storage.go

    }()
    
    // Cleans up tmp directory of the local disk.
    func bgFormatErasureCleanupTmp(diskPath string) {
    	// Need to move temporary objects left behind from previous run of minio
    	// server to a unique directory under `minioMetaTmpBucket-old` to clean
    	// up `minioMetaTmpBucket` for the current run.
    	//
    	// /disk1/.minio.sys/tmp-old/
    	//  |__ 33a58b40-aecc-4c9f-a22f-ff17bfa33b62
    	//  |__ e870a2c1-d09c-450c-a69c-6eaa54a89b3e
    	//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top