Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 862 for broken3 (0.22 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            return new NoDaemonGradleExecuter(this, testDirectoryProvider, version, buildContext).withWarningMode(null);
        }
    
        @Override
        boolean worksWith(Jvm jvm) {
            // Milestone 4 was broken on the IBM jvm
            if (jvm.isIbmJvm() && isVersion("1.0-milestone-4")) {
                return false;
            }
    
            JavaVersion javaVersion = jvm.getJavaVersion();
            if (javaVersion == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            when:
            coordinator.runCommand(command, "command")
    
            then:
            DaemonUnavailableException unavailableException = thrown()
            unavailableException.message == 'This daemon is in a broken state and will stop.'
        }
    
        def "cannot run command after finish command action has failed"() {
            Runnable command = Mock()
            RuntimeException failure = new RuntimeException()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser.java

         * If that's the case it means it's not necessary to perform more checks for this version, because we already
         * know it's broken in some way.
         *
         * @param result where to notify that metadata is broken, if broken
         * @param metadataProvider the metadata provider
         * @return true if metadata is not usable
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/process/internal/NotDeserializable.java

    import java.io.Serializable;
    
    public class NotDeserializable implements Action<WorkerProcessContext>, Serializable {
        private void readObject(ObjectInputStream instr) throws IOException {
            throw new IOException("Broken");
        }
    
        public void execute(WorkerProcessContext workerProcessContext) {
            throw new UnsupportedOperationException();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 06 17:14:50 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

            repositoryInteractions {
                'org.utils:api:2.1' {
                    expectResolve()
                }
            }
    
            then:
            succeeds ":checkDeps"
        }
    
        def "reports broken module when component selection rule requires meta-data"() {
            buildFile << """
    configurations {
        conf {
            resolutionStrategy.componentSelection {
                all { ComponentSelection selection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileMetadataAccessor.java

         * then the file type of the file metadata is of type
         * {@link org.gradle.internal.file.FileType#Missing}.
         * <p>
         * Such cases include:
         * <ul>
         *     <li>actual missing files</li>
         *     <li>broken symlinks</li>
         *     <li>circular symlinks</li>
         *     <li>named pipes</li>
         * </ul>
         */
        FileMetadata stat(File f);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestAssertionFailure.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    
    /**
     * Represent a test assertion failure where the test fails due to a broken assertion.
     *
     * @since 7.6
     */
    @Incubating
    public interface TestAssertionFailure extends TestFailure {
    
        /**
         * Returns the string representation of the expected value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. internal/logger/config.go

    				break
    			}
    			brokers = append(brokers, *host)
    		}
    		if err != nil {
    			return cfg, err
    		}
    
    		clientAuthCfgVal := getCfgVal(EnvKafkaTLSClientAuth, k, kv.Get(KafkaTLSClientAuth))
    		clientAuth, err := strconv.Atoi(clientAuthCfgVal)
    		if err != nil {
    			return cfg, err
    		}
    
    		kafkaArgs := kafka.Config{
    			Enabled: enabled,
    			Brokers: brokers,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ActionRunsBrokenNestedActions.java

            public BrokenAction(String name) {
                this.name = name;
            }
    
            @Override
            public Object execute(BuildController controller) {
                throw new RuntimeException("broken: " + name);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/structuring-software-projects/user-feature/data/src/main/java/com/example/myproduct/user/data/DataRetriever.java

            public boolean nightly;
            public boolean releaseNightly;
            public boolean activeRc;
            public String rcFor;
            public String milestoneFor;
            public boolean broken;
            public String downloadUrl;
            public String checksumUrl;
            public String wrapperChecksumUrl;
        }
    
        public static MyProductReleaseList retrieve() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top