Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 114 for userInfo (0.14 sec)

  1. staging/src/k8s.io/api/authentication/v1beta1/types.go

    // SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.
    type SelfSubjectReviewStatus struct {
    	// User attributes of the user making this request.
    	// +optional
    	UserInfo v1.UserInfo `json:"userInfo,omitempty" protobuf:"bytes,1,opt,name=userInfo"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. pkg/apis/authentication/v1/conversion.go

    // This is needed because it is referenced from other APIs, but is invisible at code-generation time because of the build tags.
    func Convert_v1_UserInfo_To_authentication_UserInfo(in *v1.UserInfo, out *authentication.UserInfo, s conversion.Scope) error {
    	return autoConvert_v1_UserInfo_To_authentication_UserInfo(in, out, s)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:42 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/configureObject/groovy/build.gradle

    class UserInfo {
        String name
        String email
    }
    
    tasks.register('greet') {
        def user = configure(new UserInfo()) {
            name = "Isaac Newton"
            email = "******@****.***"
        }
        doLast {
            println user.name
            println user.email
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 09:57:48 UTC 2024
    - 266 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1beta1/zz_generated.deepcopy.go

    			}
    			(*out)[key] = outVal
    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserInfo.
    func (in *UserInfo) DeepCopy() *UserInfo {
    	if in == nil {
    		return nil
    	}
    	out := new(UserInfo)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authentication/v1alpha1/types.go

    // SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.
    type SelfSubjectReviewStatus struct {
    	// User attributes of the user making this request.
    	// +optional
    	UserInfo v1.UserInfo `json:"userInfo,omitempty" protobuf:"bytes,1,opt,name=userInfo"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1beta1/types_swagger_doc_generated.go

    	return map_SelfSubjectReview
    }
    
    var map_SelfSubjectReviewStatus = map[string]string{
    	"":         "SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.",
    	"userInfo": "User attributes of the user making this request.",
    }
    
    func (SelfSubjectReviewStatus) SwaggerDoc() map[string]string {
    	return map_SelfSubjectReviewStatus
    }
    
    var map_TokenReview = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/configureObject/kotlin/build.gradle.kts

    class UserInfo(
        var name: String? = null,
        var email: String? = null
    )
    
    tasks.register("greet") {
        val user = UserInfo().apply {
            name = "Isaac Newton"
            email = "******@****.***"
        }
        doLast {
            println(user.name)
            println(user.email)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 09:57:48 UTC 2024
    - 285 bytes
    - Viewed (0)
  8. pkg/apis/authentication/v1alpha1/zz_generated.conversion.go

    	if err := v1.Convert_v1_UserInfo_To_authentication_UserInfo(&in.UserInfo, &out.UserInfo, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    // Convert_v1alpha1_SelfSubjectReviewStatus_To_authentication_SelfSubjectReviewStatus is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/attributes.go

    		options:             operationOptions,
    		dryRun:              dryRun,
    		object:              object,
    		oldObject:           oldObject,
    		userInfo:            userInfo,
    		reinvocationContext: &reinvocationContext{},
    	}
    }
    
    func (record *attributesRecord) GetKind() schema.GroupVersionKind {
    	return record.kind
    }
    
    func (record *attributesRecord) GetNamespace() string {
    	return record.namespace
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 07 17:53:14 UTC 2019
    - 6.2K bytes
    - Viewed (0)
  10. pkg/apis/authentication/zz_generated.deepcopy.go

    			}
    			(*out)[key] = outVal
    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserInfo.
    func (in *UserInfo) DeepCopy() *UserInfo {
    	if in == nil {
    		return nil
    	}
    	out := new(UserInfo)
    	in.DeepCopyInto(out)
    	return out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top