Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,111 for farm (0.08 sec)

  1. src/path/filepath/path_windows_test.go

    	}
    	if tmpDir[1] != ':' {
    		t.Fatalf("tmpDir path %q must have drive letter in it", tmpDir)
    	}
    	test := EvalSymlinksTest{"test/linkabswin", tmpDir[:3]}
    
    	// Create the symlink farm using relative paths.
    	testdirs := append(EvalSymlinksTestDirs, test)
    	for _, d := range testdirs {
    		var err error
    		path := simpleJoin(tmpDir, d.path)
    		if d.dest == "" {
    			err = os.Mkdir(path, 0755)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/path/filepath/path_test.go

    	}
    
    	// Create the symlink farm using relative paths.
    	for _, d := range EvalSymlinksTestDirs {
    		var err error
    		path := simpleJoin(tmpDir, d.path)
    		if d.dest == "" {
    			err = os.Mkdir(path, 0755)
    		} else {
    			err = os.Symlink(d.dest, path)
    		}
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	// Evaluate the symlink farm.
    	for _, test := range EvalSymlinksTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. cmd/warm-backend.go

    Harshavardhana <******@****.***> 1713699798 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. .github/workflows/arm-ci.yml

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    name: ARM CI
    
    on:
      push:
        branches:
          - master
          - r2.**
    permissions:
      contents: read
    
    jobs:
      build:
        # Don't do this in forks, and if labeled, only for 'kokoro:force-run'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. cmd/warm-backend-gcs.go

    Harshavardhana <******@****.***> 1713699798 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. cmd/warm-backend-minio.go

    Harshavardhana <******@****.***> 1713699798 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. cmd/warm-backend-azure.go

    Justin Griffin <******@****.***> 1709657048 -0500
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 16:44:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. cmd/warm-backend-s3.go

    Harshavardhana <******@****.***> 1713699798 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. .github/workflows/arm-cd.yml

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    name: ARM CD
    
    on:
      push:
        tags:
          - v2.**
        branches:
          - r2.**
      schedule:
        - cron: '0 8 * * *'
    
    permissions:
      contents: read
    
    jobs:
      build:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/request-forms.md

    A forma como os formulários HTML (`<form></form>`) enviam os dados para o servidor normalmente usa uma codificação "especial" para esses dados, é diferente do JSON.
    
    O **FastAPI** fará a leitura desses dados no lugar certo em vez de JSON.
    
    !!! note "Detalhes técnicos"
        Os dados dos formulários são normalmente codificados usando o "tipo de mídia" `application/x-www-form-urlencoded`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top