Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 248 for broken2 (0.14 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "gradle/configuration-cache#268")
        def "reports failure due to broken @Input task property"() {
            taskTypeWritesPropertyValueToFile()
            buildFile << """
    
    task thing(type: SomeTask) {
        prop = providers.provider { throw new RuntimeException("broken") }
        outputFile = layout.buildDirectory.file("out.txt")
    }
    
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. src/crypto/md5/md5.go

    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go -output md5block.go
    
    // Package md5 implements the MD5 hash algorithm as defined in RFC 1321.
    //
    // MD5 is cryptographically broken and should not be used for secure
    // applications.
    package md5
    
    import (
    	"crypto"
    	"errors"
    	"hash"
    	"internal/byteorder"
    )
    
    func init() {
    	crypto.RegisterHash(crypto.MD5, New)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/build.gradle.kts

        implementation(libs.sshdSftp)
        implementation(platform(libs.sshdSftp))
    
        compileOnly(project(":configuration-cache")) {
            because("""Fixes:
                compiler message file broken: key=compiler.misc.msg.bug arguments=11.0.21, {1}, {2}, {3}, {4}, {5}, {6}, {7}
                java.lang.AssertionError: typeSig ERROR""")
        }
    
        runtimeOnly(libs.mavenResolverImpl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    // been converted to constants, all the assign ops are gone, etc.). However,
    // TFLite has these variable tensors semantics. So the variable mapping from TF
    // to TFLite is actually broken here, we sort of hard-code the variable tensors
    // based on the actual ops using them, such as unidirectional_sequence_lstm.
    //
    // MLIRConverter also benefits from lots of typical compiler optimization like
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            then: 1 * processor.completed(2, { it.resultType == null })
            then: 1 * processor.completed(1, { it.resultType == null })
            0 * processor._
        }
    
        void "executes test with broken setup"() {
            when: process(ATestNGClassWithBrokenSetupMethod)
    
            then: 1 * processor.started({ it.id == 1 } , _)
            then: 1 * processor.started({ it.id == 2 } , _)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/BaseBuildScanPluginCheckInFixture.groovy

                                        if (System.getProperty("build-listener-failure") != null) {
                                            throw new RuntimeException("broken")
                                        }
                                    } as $GradleEnterprisePluginEndOfBuildListener.name
                                }
                            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                   implementation files('broken-utf8.jar')
                }
            '''
            // This file has a file name which is not UTF-8.
            // See https://bugs.openjdk.java.net/browse/JDK-7062777?focusedCommentId=12254124&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-12254124.
            resources.findResource('broken-utf8.is-a-jar').copyTo(file('broken-utf8.jar'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

            }
        }
    
        static class BrokenScopedServiceRegistry extends ScopedServiceRegistry {
            BrokenScopedServiceRegistry() {
                super(Scope.Build, "broken service registry")
            }
    
            @Provides
            BuildTreeScopedService createScopedService() {
                return new BuildTreeScopedService()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompileDaemonCancellationIntegrationTest.groovy

        private DaemonClientFixture client
    
        def setup() {
            blockingHttpServer.start()
            if (OperatingSystem.current().windows) {
                // The killed worker on Windows will cause a broken pipe error to be printed to the console,
                // so we disable stack trace checks to avoid the test failing.
                executer.withStackTraceChecksDisabled()
            }
    
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. pkg/kube/krt/internal.go

    		if reflect.TypeOf(ap.ProtoReflect().Interface()) == reflect.TypeOf(ap) {
    			return proto.Equal(ap, any(b).(proto.Message))
    		}
    		// If not, this is an embedded proto most likely... Sneaky.
    		// DeepEqual on proto is broken, so fail fast to avoid subtle errors.
    		panic(fmt.Sprintf("unable to compare object %T; perhaps it is embedding a protobuf? Provide an Equaler implementation", a))
    	}
    	return reflect.DeepEqual(a, b)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top