Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,706 for groupC (0.09 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

                        writeSmallInt(nodesById.getValue(group.node))
                        writeNodeGroup(group.delegate, nodesById)
                    }
    
                    is CompositeNodeGroup -> {
                        writeSmallInt(2)
                        writeBoolean(group.isReachableFromEntryPoint)
                        writeNodeGroup(group.ordinalGroup, nodesById)
                        writeCollection(group.finalizerGroups) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/os/user/lookup_windows.go

    	// elements which hold the names of local groups where the user participates.
    	// The list does not follow any sorting order.
    	//
    	// If no groups can be found for this user, NetUserGetLocalGroups() should
    	// always return the SID of a single group called "None", which
    	// also happens to be the primary group for the local user.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    	"user":                  "User is the user you're testing for. If you specify \"User\" but not \"Group\", then is it interpreted as \"What if User were not a member of any groups",
    	"group":                 "Groups is the groups you're testing for.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      // User is the user you're testing for.
      // If you specify "User" but not "Group", then is it interpreted as "What if User were not a member of any groups
      // +optional
      optional string user = 3;
    
      // Groups is the groups you're testing for.
      // +optional
      // +listType=atomic
      repeated string group = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups-exclude.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/round_trip_test.go

    		NonResourceAttributes: v1beta1NonResourceAttributesToV1NonResourceAttributes(in.NonResourceAttributes),
    		User:                  in.User,
    		Groups:                in.Groups,
    		Extra:                 v1beta1ExtraToV1Extra(in.Extra),
    		UID:                   in.UID,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/GroupsJavadocOptionFileOption.java

            if (value != null && !value.isEmpty()) {
                for (final String group : value.keySet()) {
                    final List<String> groupPackages = value.get(group);
    
                    writerContext
                        .writeOptionHeader(option)
                        .write("\"" + group + "\"")
                        .write(" ")
                        .write("\"" + CollectionUtils.join(":", groupPackages) + "\"")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example2/doc.go

    */
    
    // +k8s:deepcopy-gen=package
    // +groupName=example2.k8s.io
    //
    // package example2 contains an example API whose internal version is defined in
    // another group ("example"). This happens if a type is moved to a different
    // group. It's not recommended to move types across groups, though Kubernetes
    // have a few cases due to historical reasons. This package is for tests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 13 20:55:33 UTC 2017
    - 1007 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueueTest.kt

    import kotlin.concurrent.thread
    
    
    class ConcurrentGroupingQueueTest {
    
        @Test
        fun `groups similar requests ordered by most recent`() {
    
            val requestsInGroup1 = (0..1).map { Request(1, it) }
            val requestsInGroup2 = (0..1).map { Request(2, it) }
    
            val subject = ConcurrentGroupingQueue<Request> { group == it.group }
            for ((r1, r2) in requestsInGroup1 zip requestsInGroup2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/validation/missing-dependency-groupId-pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>foo</artifactId>
      <groupId>foo</groupId>
      <version>99.44</version>
      <packaging>bleh</packaging>
      <dependencies>
        <dependency>
          <artifactId>artifactId</artifactId>
          <version>1.0</version>
        </dependency>
      </dependencies>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 27 20:48:13 UTC 2009
    - 1.1K bytes
    - Viewed (0)
Back to top