Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,436 for tgroup (0.62 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/GradleModuleVersion.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model;
    
    /**
     * Informs about a module version, i.e. group, name, version.
     *
     * @since 1.1
     */
    public interface GradleModuleVersion {
    
        /**
         * The group of the module, for example 'org.gradle'.
         */
        String getGroup();
    
        /**
         * The name of the module, for example 'gradle-tooling-api'.
         */
        String getName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. build-logic/lifecycle/src/main/kotlin/gradlebuild.lifecycle.gradle.kts

            description = "Initialize CI Pipeline by priming the cache before fanning out"
            group = ciGroup
            dependsOn(":base-services:createBuildReceipt")
        }
    
        register(sanityCheck) {
            description = "Run all basic checks (without tests) - to be run locally and on CI for early feedback"
            group = "verification"
            dependsOn(
                gradle.includedBuild("build-logic-commons").task(":check"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:39:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ModuleDependencySpec.java

    /**
     * A dependency onto a module.
     */
    @Incubating
    public interface ModuleDependencySpec extends DependencySpec {
    
        /**
         * The group of the module this dependency specification refers to.
         *
         * @return the module group name
         */
        String getGroup();
    
        /**
         * The name of the module this dependency specification refers to.
         *
         * @return the module name
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandlerTest.groovy

                getCapability() >> cap
                getImplicitCapabilityProviders() >> []
            }
        }
    
        ComponentState component(String group="group", String name="name", String version="1.0") {
            ModuleIdentifier module = DefaultModuleIdentifier.newId(group, name)
            ModuleVersionIdentifier mvi = DefaultModuleVersionIdentifier.newId(module, version)
            Mock(ComponentState) {
                getId() >> mvi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFilePermissions.java

            AbstractUserClassFilePermissions user = (AbstractUserClassFilePermissions) getUser();
            AbstractUserClassFilePermissions group = (AbstractUserClassFilePermissions) getGroup();
            AbstractUserClassFilePermissions other = (AbstractUserClassFilePermissions) getOther();
            return 64 * user.toUnixNumeric() + 8 * group.toUnixNumeric() + other.toUnixNumeric();
        }
    
        @SuppressWarnings("OctalInteger")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsers.java

                visitor.candidate("Maps").example("[group: 'org.gradle', name:'gradle-core', version: '1.0']");
            }
    
            protected ModuleVersionSelector parseMap(@MapKey("group") String group, @MapKey("name") String name, @MapKey("version") String version) {
                return newSelector(DefaultModuleIdentifier.newId(group, name), version);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top