Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 278 for userinfo (0.13 sec)

  1. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientHelperTest.groovy

            def uri = new URI("https", "admin:password", "foo.example", 80, null, null, null)
    
            when:
            def strippedUri = HttpClientHelper.stripUserCredentials(uri)
    
            then:
            strippedUri.userInfo == null
            strippedUri.scheme == "https"
            strippedUri.host == "foo.example"
        }
    
        private HttpSettings getHttpSettings() {
            return Stub(HttpSettings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admission/v1/generated.proto

      // requested. e.g. a patch can result in either a CREATE or UPDATE Operation.
      optional string operation = 7;
    
      // UserInfo is information about the requesting user
      optional k8s.io.api.authentication.v1.UserInfo userInfo = 8;
    
      // Object is the object from the incoming request.
      // +optional
      optional k8s.io.apimachinery.pkg.runtime.RawExtension object = 9;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // requested. e.g. a patch can result in either a CREATE or UPDATE Operation.
      optional string operation = 7;
    
      // UserInfo is information about the requesting user
      optional k8s.io.api.authentication.v1.UserInfo userInfo = 8;
    
      // Object is the object from the incoming request.
      // +optional
      optional k8s.io.apimachinery.pkg.runtime.RawExtension object = 9;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

    import com.jcraft.jsch.HostKey;
    import com.jcraft.jsch.HostKeyRepository;
    import com.jcraft.jsch.JSch;
    import com.jcraft.jsch.JSchException;
    import com.jcraft.jsch.Session;
    import com.jcraft.jsch.UserInfo;
    import org.gradle.api.credentials.PasswordCredentials;
    import org.gradle.api.resources.ResourceException;
    import org.gradle.internal.concurrent.CompositeStoppable;
    import org.gradle.internal.concurrent.Stoppable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    			ArriveTime:        r.arrivalTime,
    			StartTime:         r.startTime,
    			WorkEstimate:      r.workEstimate.WorkEstimate,
    		}
    		if includeDetails {
    			userInfo, _ := genericrequest.UserFrom(r.ctx)
    			ans.UserName = userInfo.GetName()
    			requestInfo, ok := genericrequest.RequestInfoFrom(r.ctx)
    			if ok {
    				ans.RequestInfo = *requestInfo
    			}
    		}
    		return ans
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admission/v1/types_swagger_doc_generated.go

    	"operation":          "Operation is the operation being performed. This may be different than the operation requested. e.g. a patch can result in either a CREATE or UPDATE Operation.",
    	"userInfo":           "UserInfo is information about the requesting user",
    	"object":             "Object is the object from the incoming request.",
    	"oldObject":          "OldObject is the existing object. Only populated for DELETE and UPDATE requests.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. internal/config/identity/openid/jwt.go

    	pCfg, ok := r.arnProviderCfgsMap[arn]
    	// If claim user info is enabled, get claims from userInfo
    	// and overwrite them with the claims from JWT.
    	if ok && pCfg.ClaimUserinfo {
    		if accessToken == "" {
    			return errors.New("access_token is mandatory if user_info claim is enabled")
    		}
    		uclaims, err := pCfg.UserInfo(ctx, accessToken, r.transport)
    		if err != nil {
    			return err
    		}
    		for k, v := range uclaims {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 18:10:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Required
        @Min(0)
        @Max(100)
        @ValidateTypeFailure
        public Integer crawlingThreadCount;
    
        @Size(max = 10)
        public String searchLog;
    
        @Size(max = 10)
        public String userInfo;
    
        @Size(max = 10)
        public String userFavorite;
    
        @Size(max = 10)
        public String webApiJson;
    
        @Size(max = 10000)
        public String appValue;
    
        @Size(max = 1000)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook.go

    	}
    }
    
    func v1beta1UserToV1User(u authenticationv1beta1.UserInfo) authenticationv1.UserInfo {
    	var extra map[string]authenticationv1.ExtraValue
    	if u.Extra != nil {
    		extra = make(map[string]authenticationv1.ExtraValue, len(u.Extra))
    		for k, v := range u.Extra {
    			extra[k] = authenticationv1.ExtraValue(v)
    		}
    	}
    	return authenticationv1.UserInfo{
    		Username: u.Username,
    		UID:      u.UID,
    		Groups:   u.Groups,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  10. plugin/pkg/admission/storage/storageobjectinuseprotection/admission_test.go

    				schema.GroupVersionKind{},
    				test.namespace,
    				"foo",
    				test.resource,
    				"", // subresource
    				admission.Create,
    				&metav1.CreateOptions{},
    				false, // dryRun
    				nil,   // userInfo
    			)
    
    			err := ctrl.Admit(context.TODO(), attrs, nil)
    			if err != nil {
    				t.Errorf("Test %q: got unexpected error: %v", test.name, err)
    			}
    			if !reflect.DeepEqual(test.expectedObject, obj) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top