Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,040 for userTime (0.2 sec)

  1. pkg/credentialprovider/secrets/secrets_test.go

    						v1.DockerConfigJsonKey: []byte(`{"auths": {"test.registry.io": {"username": "user", "password": "password"}}}`),
    					},
    				},
    			},
    			authConfigs: []credentialprovider.AuthConfig{
    				{
    					Username: "user",
    					Password: "password",
    				},
    			},
    			found: true,
    		},
    		{
    			name:           "with .dockerconfig and username/password fields",
    			image:          "test.registry.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:11:10 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers_test.go

    	}{
    		{
    			"image without username and uid should return (new(int64), \"\", nil)",
    			image{
    				name:     "test-image-ref1",
    				uid:      (*runtimeapi.Int64Value)(nil),
    				username: "",
    			},
    			imageUserValues{
    				uid:      int64(0),
    				username: "",
    				err:      nil,
    			},
    		},
    		{
    			"image with username and no uid should return ((*int64)nil, imageStatus.Username, nil)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. docs_src/request_forms/tutorial001.py

    from fastapi import FastAPI, Form
    
    app = FastAPI()
    
    
    @app.post("/login/")
    async def login(username: str = Form(), password: str = Form()):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 173 bytes
    - Viewed (0)
  4. docs_src/configure_swagger_ui/tutorial002.py

    from fastapi import FastAPI
    
    app = FastAPI(swagger_ui_parameters={"syntaxHighlight.theme": "obsidian"})
    
    
    @app.get("/users/{username}")
    async def read_user(username: str):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 216 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/rule.go

    		ServiceAccountUsernameSeparator = ":"
    	)
    	if !strings.HasPrefix(username, ServiceAccountUsernamePrefix) {
    		return false
    	}
    	username = username[len(ServiceAccountUsernamePrefix):]
    
    	if !strings.HasPrefix(username, namespace) {
    		return false
    	}
    	username = username[len(namespace):]
    
    	return strings.HasPrefix(username, ServiceAccountUsernameSeparator)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/encoding/csv/example_test.go

    func ExampleReader() {
    	in := `first_name,last_name,username
    "Rob","Pike",rob
    Ken,Thompson,ken
    "Robert","Griesemer","gri"
    `
    	r := csv.NewReader(strings.NewReader(in))
    
    	for {
    		record, err := r.Read()
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			log.Fatal(err)
    		}
    
    		fmt.Println(record)
    	}
    	// Output:
    	// [first_name last_name username]
    	// [Rob Pike rob]
    	// [Ken Thompson ken]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 22 11:11:37 UTC 2015
    - 2.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

         * 
         * @param domain
         * @param username
         * @param challenge
         * @param ansiHash
         * @param unicodeHash
         */
        public NtlmPasswordAuthentication ( String domain, String username, byte[] challenge, byte[] ansiHash, byte[] unicodeHash ) {
            super(domain, username, null);
            if ( domain == null || username == null || ansiHash == null || unicodeHash == null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  8. docs_src/request_forms/tutorial001_an.py

    from fastapi import FastAPI, Form
    from typing_extensions import Annotated
    
    app = FastAPI()
    
    
    @app.post("/login/")
    async def login(username: Annotated[str, Form()], password: Annotated[str, Form()]):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 233 bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthentication.java

            return port;
        }
    
        public void setPort(final int port) {
            this.port = port;
        }
    
        public String getUsername() {
            return username;
        }
    
        public void setUsername(final String username) {
            this.username = username;
        }
    
        public String getPassword() {
            return password;
        }
    
        public void setPassword(final String password) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/os/user/lookup_stubs.go

    	u = &User{
    		Uid:      uid,
    		Gid:      currentGID(),
    		Username: os.Getenv("USER"),
    		Name:     "", // ignored
    		HomeDir:  homeDir,
    	}
    	// On Android, return a dummy user instead of failing.
    	switch runtime.GOOS {
    	case "android":
    		if u.Uid == "" {
    			u.Uid = "1"
    		}
    		if u.Username == "" {
    			u.Username = "android"
    		}
    	}
    	// cgo isn't available, but if we found the minimum information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 16:09:09 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top