Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 192 for 0640 (0.04 sec)

  1. docs/ko/docs/deployment/versions.md

    ```txt
    fastapi==0.45.0
    ```
    
    이것은 `0.45.0` 버전을 사용했다는 것을 의미합니다.
    
    또는 다음과 같이 표시할 수 있습니다:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    이것은 `0.45.0` 버전과 같거나 높으면서 `0.46.0` 버전 보다는 낮은 버전을 사용했다는 것을 의미합니다. 예를 들어, `0.45.2` 버전과 같은 경우는 해당 조건을 만족합니다.
    
    만약에 Poetry, Pipenv, 또는 그밖의 다양한 설치 도구를 사용한다면, 패키지에 구체적인 버전을 정의할 수 있는 방법을 가지고 있을 것입니다.
    
    ## 이용가능한 버전들
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    00000040  39 6a 4d 8d 87 00 3b 14  76 4a 86 87 46 1e d4 04  |9jM...;.vJ..F...|
    00000050  2d ea c1 44 1f e8 87 71  da 1e 26 72 a2 e9 40 0c  |-..D...q..&r..@.|
    00000060  33 6e 6f 06 43 ed 7f fc  8f 4c d4 f4 0f 83 19 cb  |3no.C....L......|
    00000070  52 a9 94 f3 6a 64 db dd  20 d1 a7 d4 c7 6e 86 ed  |R...jd.. ....n..|
    00000080  6e ea 5c 66 d1 34 a6 92  7e b1 16 03 03 02 69 48  |n.\f.4..~.....iH|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/os/read_test.go

    		"build bigger and better idiot-proof programs, and the Universe trying " +
    		"to produce bigger and better idiots. So far, the Universe is winning."
    
    	if err := WriteFile(f.Name(), []byte(msg), 0644); err != nil {
    		t.Fatalf("WriteFile %s: %v", f.Name(), err)
    	}
    
    	data, err := ReadFile(f.Name())
    	if err != nil {
    		t.Fatalf("ReadFile %s: %v", f.Name(), err)
    	}
    
    	if string(data) != msg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 02:36:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/syscall/exec_windows_test.go

    		if dumpPath == "" {
    			fmt.Fprintf(os.Stderr, "Dump file path cannot be blank.")
    			os.Exit(1)
    		}
    		err := os.WriteFile(dumpPath, []byte(fmt.Sprintf("%d", os.Getppid())), 0644)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "Error writing dump file: %v", err)
    			os.Exit(2)
    		}
    		os.Exit(0)
    	}
    
    	// run parent process
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. test/ken/array.go

    func testpfpf() {
    	var a [20]int
    
    	setpf(&a)
    	res(sumpf(&a), 0, 20)
    }
    
    // call ptr dynamic with ptr fixed from new
    func testpdpf1() {
    	a := new([40]int)
    	setpd(a[0:])
    	res(sumpd(a[0:]), 0, 40)
    
    	b := (*a)[5:30]
    	res(sumpd(b), 5, 30)
    }
    
    // call ptr dynamic with ptr fixed from var
    func testpdpf2() {
    	var a [80]int
    
    	setpd(a[0:])
    	res(sumpd(a[0:]), 0, 80)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/config/resetconfiguration_test.go

    				- a
    				- b
    			`),
    		},
    	}
    
    	for _, rt := range tests {
    		t.Run(rt.name, func(t2 *testing.T) {
    			cfgPath := filepath.Join(tmpdir, rt.name)
    			err := os.WriteFile(cfgPath, []byte(rt.fileContents), 0644)
    			if err != nil {
    				t.Errorf("Couldn't create file: %v", err)
    				return
    			}
    
    			opts := LoadOrDefaultConfigurationOptions{
    				AllowExperimental: true,
    				SkipCRIDetect:     true,
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 06 13:21:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/vcweb.go

    	}
    
    	if err := os.WriteFile(filepath.Join(s.homeDir, ".gitconfig"), []byte(gitConfig), 0644); err != nil {
    		return nil, err
    	}
    	gitConfigDir := filepath.Join(s.homeDir, ".config", "git")
    	if err := os.MkdirAll(gitConfigDir, 0755); err != nil {
    		return nil, err
    	}
    	if err := os.WriteFile(filepath.Join(gitConfigDir, "ignore"), []byte(""), 0644); err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/pgo_devirtualize_test.go

    	// Add a go.mod so we have a consistent symbol names in this temp dir.
    	goMod := fmt.Sprintf(`module %s
    go 1.21
    `, pkg)
    	if err := os.WriteFile(filepath.Join(dir, "go.mod"), []byte(goMod), 0644); err != nil {
    		t.Fatalf("error writing go.mod: %v", err)
    	}
    
    	// Run the test without PGO to ensure that the test assertions are
    	// correct even in the non-optimized version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 21:30:35 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. docs/ru/docs/deployment/versions.md

    Или вы можете закрепить версию следующим способом:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    это значит, что вы используете версии `0.45.0` или выше, но меньше чем `0.46.0`. Например, версия `0.45.2` все еще будет подходить.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/patches/patches_test.go

    				t.Fatal(err)
    			}
    			defer os.RemoveAll(tempDir)
    
    			for _, file := range tc.filesToWrite {
    				filePath := filepath.Join(tempDir, file)
    				err := os.WriteFile(filePath, []byte(tc.patchData), 0644)
    				if err != nil {
    					t.Fatalf("could not write temporary file %q", filePath)
    				}
    			}
    
    			patchSets, patchFiles, ignoredFiles, err := getPatchSetsFromPath(tempDir, testKnownTargets, io.Discard)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top