Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 209 for userInfo (0.17 sec)

  1. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                            <la:errors property="userInfo"/>
                                            <div class="form-check">
                                                <la:checkbox styleId="userInfo" styleClass="form-check-input" property="userInfo"/>
                                                <label for="userInfo" class="form-check-label">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  2. plugin/pkg/admission/gc/gc_admission.go

    		if !apiequality.Semantic.DeepEqual(oldOwners[i], newOwners[i]) {
    			return true
    		}
    	}
    
    	return false
    }
    
    func finalizeAnythingRecord(userInfo user.Info) authorizer.AttributesRecord {
    	return authorizer.AttributesRecord{
    		User:            userInfo,
    		Verb:            "update",
    		APIGroup:        "*",
    		APIVersion:      "*",
    		Resource:        "*",
    		Subresource:     "finalizers",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    		field("group", apiservercel.StringType, true),
    		field("version", apiservercel.StringType, true),
    		field("resource", apiservercel.StringType, true),
    	))
    	userInfoType := apiservercel.NewObjectType("kubernetes.UserInfo", fields(
    		field("username", apiservercel.StringType, false),
    		field("uid", apiservercel.StringType, false),
    		field("groups", apiservercel.NewListType(apiservercel.StringType, -1), false),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                clickLogBhv.delete(clickLog);
            } else if (e instanceof final FavoriteLog favoriteLog) {
                favoriteLogBhv.delete(favoriteLog);
            } else if (e instanceof final UserInfo userInfo) {
                userInfoBhv.delete(userInfo);
            } else if (e instanceof final SearchLog searchLog) {
                searchLogBhv.delete(searchLog);
            } else {
                throw new FessSystemException("Unknown log entity: " + e);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admission/v1/generated.pb.go

    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`,
    		`Operation:` + fmt.Sprintf("%v", this.Operation) + `,`,
    		`UserInfo:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.UserInfo), "UserInfo", "v11.UserInfo", 1), `&`, ``, 1) + `,`,
    		`Object:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Object), "RawExtension", "runtime.RawExtension", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46K bytes
    - Viewed (0)
  6. security/pkg/server/ca/authenticate/kubeauth/kube_jwt_test.go

    					Token: tc.token,
    				},
    			}
    
    			tokenReview.Status.Audiences = []string{}
    			if tc.token != invlidToken {
    				tokenReview.Status.Authenticated = true
    			}
    			tokenReview.Status.User = k8sauth.UserInfo{
    				Username: "system:serviceaccount:default:example-pod-sa",
    				Groups:   []string{"system:serviceaccounts"},
    			}
    
    			client := fake.NewSimpleClientset()
    			if !tc.remoteCluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    		result := make(map[string]*apiservercel.DeclField, len(fields))
    		for _, f := range fields {
    			result[f.Name] = f
    		}
    		return result
    	}
    
    	return apiservercel.NewObjectType("kubernetes.UserInfo", fields(
    		field("username", apiservercel.StringType, false),
    		field("uid", apiservercel.StringType, false),
    		field("groups", apiservercel.NewListType(apiservercel.StringType, -1), false),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/net/http/clone.go

    // See go.dev/issue/67401.
    //
    //go:linkname cloneURL
    func cloneURL(u *url.URL) *url.URL {
    	if u == nil {
    		return nil
    	}
    	u2 := new(url.URL)
    	*u2 = *u
    	if u.User != nil {
    		u2.User = new(url.Userinfo)
    		*u2.User = *u.User
    	}
    	return u2
    }
    
    // cloneMultipartForm should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.authentication.v1.UserInfo": {
            "description": "UserInfo holds the information about the user needed to implement the user.Info interface.",
            "properties": {
              "extra": {
                "additionalProperties": {
                  "items": {
                    "default": "",
                    "type": "string"
                  },
                  "type": "array"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admission/v1beta1/generated.pb.go

    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`,
    		`Operation:` + fmt.Sprintf("%v", this.Operation) + `,`,
    		`UserInfo:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.UserInfo), "UserInfo", "v11.UserInfo", 1), `&`, ``, 1) + `,`,
    		`Object:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Object), "RawExtension", "runtime.RawExtension", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top