Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,001 for groupC (0.12 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                    builder.append(separator);
                }
                String group1 = matcher.group(1).toLowerCase();
                String group2 = matcher.group(2);
                if (group2.length() == 0) {
                    builder.append(group1);
                } else {
                    if (group1.length() > 1) {
                        builder.append(group1.substring(0, group1.length() - 1));
                        builder.append(separator);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. tests/common/jwt/jwt_token.go

    const (
    	// Payload {
    	//  "exp": 4715782722,
    	//  "groups": [
    	//    "group-1"
    	//  ],
    	//  "iat": 1562182722,
    	//  "iss": "******@****.***",
    	//  "sub": "sub-1"
    	// }
    	// Generated by: security/tools/jwt/samples/gen-jwt.py tests/common/jwt/key.pem -jwks=tests/common/jwt/jwks.json
    	// --expire=3153600000 --iss=******@****.*** --sub=sub-1 --listclaim groups "group-1"
    	// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/trace/goroutines.go

    		}
    		// Accumulate groups by Name.
    		groupsByName := make(map[string]goroutineGroup)
    		for _, summary := range summaries {
    			group := groupsByName[summary.Name]
    			group.Name = summary.Name
    			group.N++
    			group.ExecTime += summary.ExecTime
    			groupsByName[summary.Name] = group
    		}
    		var groups []goroutineGroup
    		for _, group := range groupsByName {
    			groups = append(groups, group)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/go/ast/commentmap.go

    	// })
    
    	return list
    }
    
    // A commentListReader helps iterating through a list of comment groups.
    type commentListReader struct {
    	fset     *token.FileSet
    	list     []*CommentGroup
    	index    int
    	comment  *CommentGroup  // comment group at current index
    	pos, end token.Position // source interval of comment group at current index
    }
    
    func (r *commentListReader) eol() bool {
    	return r.index >= len(r.list)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    	} else {
    		// Check if group already exists
    		if _, gerr := globalIAMSys.GetGroupDescription(updReq.Group); gerr != nil {
    			// If group does not exist, then check if the group has beginning and end space characters
    			// we will reject such group names.
    			if errors.Is(gerr, errNoSuchGroup) && hasSpaceBE(updReq.Group) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // for this resource across all versions in the API group.
      // Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
      // Resources with empty groups are located at /api/v1/<APIResourceDiscovery.Resource>
      optional string resource = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/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: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top