Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for Hellox (0.08 sec)

  1. src/internal/types/testdata/check/builtins0.go

    	var b = make([]byte, 5)
    	n1 := copy(s, a[0:])            // n1 == 6, s == []int{0, 1, 2, 3, 4, 5}
    	n2 := copy(s, s[2:])            // n2 == 4, s == []int{2, 3, 4, 5, 4, 5}
    	n3 := copy(b, "Hello, World!")  // n3 == 5, b == []byte("Hello")
    	_, _, _ = n1, n2, n3
    
    	var t [][]int
    	copy(t, t)
    	copy(t /* ERROR "copy expects slice arguments" */ , nil)
    	copy(nil /* ERROR "copy expects slice arguments" */ , t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. cmd/format-erasure.go

    					logger.Info(" * Set %v:", i+1)
    					for j := 0; j < setDriveCount; j++ {
    						disk := storageDisks[i*setDriveCount+j]
    						logger.Info("   - Drive: %s", disk.String())
    					}
    				})
    				logger.Info(color.Yellow("WARNING:")+" Host %v has more than %v drives of set. "+
    					"A host failure will result in data becoming unavailable.", host, wantAtMost)
    			}
    		}
    	}
    
    	// Save formats `format.json` across all disks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    For example, the project property `myProperty` is created in a build file:
    
    .build.gradle
    [source,groovy]
    ----
    ext {
        myProperty = findProperty('myProperty') ?: 'Hello, world!'
    }
    
    println "My property value: ${project.ext.myProperty}"
    ----
    
    === Setting a project properties
    
    You have three options to add project properties, listed in order of priority:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                        text = getProject().provider(new Callable<String>() {
                            @Override
                            public String call() throws Exception {
                                return "Hello World!";
                            }
                        });
                        file = getProject().getObjects().property(File.class);
                        file.set(new File("some/dir"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  5. docs/uk/docs/alternatives.md

    ```Python
    response = requests.get("http://example.com/some/url")
    ```
    
    Відповідна операція *роуту* API FastAPI може виглядати так:
    
    ```Python hl_lines="1"
    @app.get("/some/url")
    def read_url():
         return {"message": "Hello World"}
    ```
    
    Зверніть увагу на схожість у `requests.get(...)` і `@app.get(...)`.
    
    !!! check "Надихнуло **FastAPI** на"
         * Майте простий та інтуїтивно зрозумілий API.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. cmd/server-main.go

    		}
    		objAPI := newObjectLayerFn()
    		if objAPI != nil {
    			printStorageInfo(objAPI.StorageInfo(GlobalContext, true))
    		}
    		if len(warnings) > 0 {
    			logger.Info(color.Yellow("STARTUP WARNINGS:"))
    			for _, warn := range warnings {
    				logger.Info(warn)
    			}
    		}
    	}()
    
    	region := globalSite.Region()
    	if region == "" {
    		region = "us-east-1"
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    * Create a `main.py` file with:
    
    ```Python
    from typing import Union
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. docs/pt/docs/deployment/docker.md

    * Crie um arquivo `main.py` com:
    
    ```Python
    from typing import Optional
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  9. src/os/os_windows_test.go

    	if err != nil {
    		t.Fatalf("Unable to duplicate stdin: %v", err)
    	}
    	testConsole := os.NewConsoleFile(stdinDuplicate, "test")
    
    	var tests = []string{
    		"abc",
    		"äöü",
    		"\u3042",
    		"“hi”™",
    		"hello\x1aworld",
    		"\U0001F648\U0001F649\U0001F64A",
    	}
    
    	for _, consoleSize := range []int{1, 2, 3, 10, 16, 100, 1000} {
    		for _, readSize := range []int{1, 2, 3, 4, 5, 8, 10, 16, 20, 50, 100} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. docs/zh/docs/deployment/docker.md

    * 创建一个 `main.py` 文件:
    
    
    
    ```Python
    from typing import Union
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top