Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,706 for groupC (0.1 sec)

  1. tests/common/jwt/jwt_token_test.go

    			name:  "TokenIssuer2",
    			token: TokenIssuer2,
    			wantClaims: map[string]any{
    				"groups": []any{"group-2"},
    				"iss":    "******@****.***",
    				"sub":    "sub-2",
    				"exp":    4715782783.0,
    			},
    		},
    		{
    			name:  "TokenExpired",
    			token: TokenExpired,
    			wantClaims: map[string]any{
    				"groups": []any{"group-1"},
    				"iss":    "******@****.***",
    				"sub":    "sub-1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

                        ArrayList groups = (ArrayList)map.get(mems[mi]);
                        if (groups == null) {
                            groups = new ArrayList();
                            map.put(mems[mi], groups);
                        }
                        if (!groups.contains(groupSid))
                            groups.add(groupSid);
                    }
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemGroup.java

        String getDisplayName();
    
        /**
         * Returns the parent group or {@code null} for root groups.
         *
         * @return the parent group
         * @since 8.9
         */
        @Nullable
        ProblemGroup getParent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 10:17:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizerGroup.java

            // The members of this group have an implicit dependency on each finalized node of this group.
            // When a finalizer node is a member of some other group, then it in turn has an implicit dependency on the finalized nodes of that group.
            // This can introduce a cycle. So, determine all the groups reachable from the finalizers of this group via these relationships
            // and check for cycles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 01 16:25:48 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. internal/config/identity/ldap/ldap.go

    	}
    
    	// Bind to the lookup user account again to perform group search.
    	if err = l.LDAP.LookupBind(conn); err != nil {
    		return nil, nil, err
    	}
    
    	// User groups lookup.
    	groups, err := l.LDAP.SearchForUserGroups(conn, username, lookupResult.ActualDN)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	return lookupResult, groups, nil
    }
    
    // GetExpiryDuration - return parsed expiry duration.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  6. staging/src/k8s.io/api/testdata/HEAD/admission.k8s.io.v1.AdmissionReview.yaml

        spec:
          replicas: 1
        status:
          available: 1
      requestKind:
        group: groupValue
        kind: kindValue
        version: versionValue
      requestResource:
        group: groupValue
        resource: resourceValue
        version: versionValue
      requestSubResource: requestSubResourceValue
      resource:
        group: groupValue
        resource: resourceValue
        version: versionValue
      subResource: subResourceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/admission.k8s.io.v1beta1.AdmissionReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1.AdmissionReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.yaml

        spec:
          replicas: 1
        status:
          available: 1
      requestKind:
        group: groupValue
        kind: kindValue
        version: versionValue
      requestResource:
        group: groupValue
        resource: resourceValue
        version: versionValue
      requestSubResource: requestSubResourceValue
      resource:
        group: groupValue
        resource: resourceValue
        version: versionValue
      subResource: subResourceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

            group = {name: name, src: src, sumpos: 0, sumneg: 0, self: 0, places: []};
            groupMap.set(src, group);
            groups.push(group);
          }
          if (stack.Value < 0) {
    	group.sumneg += -stack.Value;
          } else {
    	group.sumpos += stack.Value;
          }
          group.self += (place.Pos == stack.Sources.length-1) ? stack.Value : 0;
          group.places.push(place);
        }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top