Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for userTime (0.15 sec)

  1. src/net/http/request_test.go

    		r, _ := NewRequest("GET", "http://example.com/", nil)
    		r.SetBasicAuth(tt.username, tt.password)
    		username, password, ok := r.BasicAuth()
    		if ok != tt.ok || username != tt.username || password != tt.password {
    			t.Errorf("BasicAuth() = %#v, want %#v", getBasicAuthTest{username, password, ok},
    				getBasicAuthTest{tt.username, tt.password, tt.ok})
    		}
    	}
    	// Unauthenticated request.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  2. pom.xml

    								</source>
    							</sources>
    						</mapping>
    						<mapping>
    							<directory>${packaging.fess.var.dir}</directory>
    							<filemode>755</filemode>
    							<username>${packaging.fess.user}</username>
    							<groupname>${packaging.fess.group}</groupname>
    						</mapping>
    						<!-- bin -->
    						<mapping>
    							<directory>${packaging.fess.bin.dir}</directory>
    							<filemode>755</filemode>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  3. cmd/ftp-server-driver.go

    		}
    	}
    
    	return nil
    }
    
    func (driver *ftpDriver) CheckPasswd(c *ftp.Context, username, password string) (ok bool, err error) {
    	stopFn := globalFtpMetrics.log(c, username)
    	defer stopFn(0, err)
    
    	if globalIAMSys.LDAPConfig.Enabled() {
    		sa, _, err := globalIAMSys.getServiceAccount(context.Background(), username)
    		if err != nil && !errors.Is(err, errNoSuchServiceAccount) {
    			return false, err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. cmd/admin-handlers-idp-ldap.go

    		// We still need to ensure that the target user is a valid LDAP user.
    		//
    		// The target user may be supplied as a (short) username or a DN.
    		// However, for now, we only support using the short username.
    
    		isDN := globalIAMSys.LDAPConfig.ParsesAsDN(targetUser)
    		opts.claims[ldapUserN] = targetUser // simple username
    		var lookupResult *xldap.DNSearchResult
    		lookupResult, targetGroups, err = globalIAMSys.LDAPConfig.LookupUserDN(targetUser)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 19:58:48 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. docs/sts/ldap.md

    - User provides their AD/LDAP username and password to the STS API.
    - MinIO looks up the user's information (specifically the user's Distinguished Name) in the LDAP server.
    - On finding the user's info, MinIO verifies the login credentials with the AD/LDAP server.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

                }
            }
        }
    
        private String calculateUserInfo(URI uri) {
            String username = systemProperties.get("gradle.wrapperUser");
            String password = systemProperties.get("gradle.wrapperPassword");
            if (username != null && password != null) {
                return username + ':' + password;
            }
            return uri.getUserInfo();
        }
    
        private String calculateUserAgent() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/security/oauth2-scopes.md

            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="106  108-116"
        {!> ../../../docs_src/security/tutorial005.py!}
        ```
    
    ## Verify the `username` and data shape
    
    We verify that we get a `username`, and extract the scopes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	enforceMemoryQoS := false
    	// Set memory.min and memory.high if MemoryQoS enabled with cgroups v2
    	if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.MemoryQoS) &&
    		isCgroup2UnifiedMode() {
    		enforceMemoryQoS = true
    	}
    	cl, err := m.generateLinuxContainerConfig(container, pod, uid, username, nsTarget, enforceMemoryQoS)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1/types.go

    // user.Info interface.
    type UserInfo struct {
    	// The name that uniquely identifies this user among all active users.
    	// +optional
    	Username string `json:"username,omitempty" protobuf:"bytes,1,opt,name=username"`
    	// A unique value that identifies this user across time. If this user is
    	// deleted and another user by the same name is added, they will have
    	// different UIDs.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/templates/productpage.html

          <form class="space-y-6" method="post" action='login' name="login_form">
            <div>
              <label for="email" class="block text-sm font-medium leading-6 text-gray-900">Username</label>
              <div class="mt-2">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top