Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,195 for tgroup (0.11 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/CapabilitySerializer.java

            String group = decoder.readString();
            String name = decoder.readString();
            String version = decoder.readNullableString();
            return new DefaultImmutableCapability(group, name, version);
        }
    
        @Override
        public void write(Encoder encoder, Capability value) throws IOException {
            encoder.writeString(value.getGroup());
            encoder.writeString(value.getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. pkg/volume/configmap/configmap_test.go

    	if !hasPathSuffix(volumePath, "pods/test_pod_uid/volumes/kubernetes.io~configmap/test_volume_name") {
    		t.Errorf("Got unexpected path: %s", volumePath)
    	}
    
    	var mounterArgs volume.MounterArgs
    	group := int64(1001)
    	mounterArgs.FsGroup = &group
    	err = mounter.SetUp(mounterArgs)
    	if err != nil {
    		t.Errorf("Failed to setup volume: %v", err)
    	}
    	if _, err := os.Stat(volumePath); err != nil {
    		if os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  3. samples/security/psp/sidecar-psp.yaml

    kind: ClusterRoleBinding
    metadata:
      name: istio-sidecar-psp
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: istio-sidecar-psp
    subjects:
      - apiGroup: rbac.authorization.k8s.io
        kind: Group
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 27 17:55:37 UTC 2023
    - 881 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Dependency.java

        String CLASSIFIER = "m:classifier";
    
        /**
         * Returns the group of this dependency. The group is often required to find the artifacts of a dependency in a
         * repository. For example, the group name corresponds to a directory name in a Maven like repository. Might return
         * null.
         */
        @Nullable
        String getGroup();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

                return Objects.hashCode(group, module, versionConstraint, reason, attributes);
            }
        }
    
        private static class VariantCapability implements Capability {
            final String group;
            final String name;
            final String version;
    
            private VariantCapability(String group, String name, String version) {
                this.group = group;
                this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependencyConstraintTest.groovy

            constraint.force = true
            constraint.reason = "reason"
    
            when:
            def constraintCopy = constraint.copy()
    
            then:
            constraintCopy.group == constraint.group
            constraintCopy.name == constraint.name
            constraintCopy.version == constraint.version
            constraintCopy.versionConstraint == constraint.versionConstraint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            projectDependency.getArtifacts() >> []
            projectDependency.getGroup() >> "pub-group"
            projectDependency.getName() >> "pub-name"
            projectDependencyResolver.resolveComponent(ModuleVersionIdentifier, projectDependency.identityPath) >> DefaultModuleVersionIdentifier.newId("pub-group", "pub-name", "pub-version")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/AggregatingProblemConsumer.java

        }
    
        private static String aggregationKeyFor(InternalProblemId id) {
            return aggregationKeyFor(id.getGroup()) + ";" + id.getName();
        }
    
        private static String aggregationKeyFor(InternalProblemGroup group) {
            return group.getParent() == null ? group.getName() : aggregationKeyFor(group.getParent()) + ";" + group.getName();
        }
    
        private void sendProgress(InternalProblemEventVersion2 problem, String aggregationKey) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/threshold_notifier_linux.go

    // NewCgroupNotifier returns a linuxCgroupNotifier, which performs cgroup control operations required
    // to receive notifications from the cgroup when the threshold is crossed in either direction.
    func NewCgroupNotifier(path, attribute string, threshold int64) (CgroupNotifier, error) {
    	// cgroupv2 does not support monitoring cgroup memory thresholds using cgroup.event_control.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 01 21:59:54 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRulesTest.groovy

            cause.notation == notation
        }
    
        def "ComponentSelectionSpec matches on group and name" () {
            def spec = new DefaultComponentSelectionRules.ComponentSelectionMatchingSpec(DefaultModuleIdentifier.newId(group, name))
            def candidate = Mock(ModuleComponentIdentifier) {
                1 * getGroup() >> "org.gradle"
                (0..1) * getModule() >> "api"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top