Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for getSuite (0.14 sec)

  1. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/JvmTestSuitePlugin.java

            TestingExtension testing = project.getExtensions().getByType(TestingExtension.class);
            ExtensiblePolymorphicDomainObjectContainer<TestSuite> testSuites = testing.getSuites();
            testSuites.registerBinding(JvmTestSuite.class, DefaultJvmTestSuite.class);
    
            project.getTasks().withType(Test.class).configureEach(test -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 21:08:13 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingContainer.java

        }
    
        @Override
        public TestLogging getQuiet() {
            return perLevelTestLogging.get(LogLevel.QUIET);
        }
    
        @Override
        public void setQuiet(TestLogging logging) {
            perLevelTestLogging.put(LogLevel.QUIET, logging);
        }
    
        @Override
        public void quiet(Action<TestLogging> action) {
            action.execute(getQuiet());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultUserClassFilePermissions.java

            write = isWrite(unixNumeric);
            execute = isExecute(unixNumeric);
        }
    
        @Override
        public boolean getRead() {
            return read;
        }
    
        @Override
        public boolean getWrite() {
            return write;
        }
    
        @Override
        public boolean getExecute() {
            return execute;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/TestingExtension.java

        /**
         * Available test suites in this project.
         *
         * The type of test suites available depend on which other plugins are applied.
         */
        ExtensiblePolymorphicDomainObjectContainer<TestSuite> getSuites();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/internal/DefaultTestingExtension.java

        }
    
        @Inject
        public abstract ObjectFactory getObjectFactory();
    
        @Override
        public ExtensiblePolymorphicDomainObjectContainer<TestSuite> getSuites() {
            return suites;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultModelUrlNormalizer.java

                scm.setDeveloperConnection(normalize(scm.getDeveloperConnection()));
            }
    
            DistributionManagement dist = model.getDistributionManagement();
            if (dist != null) {
                Site site = dist.getSite();
                if (site != null) {
                    site.setUrl(normalize(site.getUrl()));
                }
            }
        }
    
        private String normalize(String url) {
            return urlNormalizer.normalize(url);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractUserClassFilePermissions.java

         * See {@link ConfigurableFilePermissions#unix(String)} for details,
         * returned value is equivalent to one of the three octal digits.
         */
        protected int toUnixNumeric() {
            return (getRead() ? 4 : 0) + (getWrite() ? 2 : 0) + (getExecute() ? 1 : 0);
        }
    
        protected static boolean isRead(int unixNumeric) {
            return (unixNumeric & 4) >> 2 == 1;
        }
    
        protected static boolean isRead(String unixSymbolic) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/internal/JavaPluginHelper.java

            if (testing == null) {
                throw new GradleException(message);
            }
    
            TestSuite defaultTestSuite = testing.getSuites().findByName(JvmTestSuitePlugin.DEFAULT_TEST_SUITE_NAME);
            if (!(defaultTestSuite instanceof JvmTestSuite)) {
                throw new GradleException(message);
            }
    
            return (JvmTestSuite) defaultTestSuite;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 13:16:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

         * <p>
         * Write access is the capability to modify or remove the contents of a file,
         * or to add or remove files to/from a directory.
         */
        boolean getWrite();
    
        /**
         * Describes if a certain class of users has execute access to a file or directory.
         * <p>
         * Execute access is the capability to run a file as a program; executing a directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelUrlNormalizer.java

                        .build());
            }
    
            DistributionManagement dist = model.getDistributionManagement();
            if (dist != null) {
                Site site = dist.getSite();
                if (site != null) {
                    builder.distributionManagement(dist.withSite(site.withUrl(normalize(site.getUrl()))));
                }
            }
    
            return builder.build();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top