Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for broken3 (0.49 sec)

  1. maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java

            assertEquals(expectedReference, summary.getReference());
        }
    
        @Test
        void testHandleExceptionLoopInCause() {
            // Some broken exception that does return "this" as getCause
            AtomicReference<Throwable> causeRef = new AtomicReference<>(null);
            Exception cause2 = new RuntimeException("loop") {
                @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/internal/goexperiment/flags.go

    	// reflection calls use registers).
    	RegabiArgs bool
    
    	// HeapMinimum512KiB reduces the minimum heap size to 512 KiB.
    	//
    	// This was originally reduced as part of PacerRedesign, but
    	// has been broken out to its own experiment that is disabled
    	// by default.
    	HeapMinimum512KiB bool
    
    	// CoverageRedesign enables the new compiler-based code coverage
    	// tooling.
    	CoverageRedesign bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelNormalizer.java

             * unique within a single POM. Upon multiple declarations, 2.x just kept the last one but retained the order of
             * the first occurrence. So when we're in lenient/compat mode, we have to deal with such broken POMs and mimic
             * the way 2.x works. When we're in strict mode, the removal of duplicates just saves other merging steps from
             * aftereffects and bogus error messages.
             */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

     * Scope tests should not forget checking contained names, as they're a public part of the [KaScope] API.
     *
     * Note: Many scopes wouldn't work correctly if the contained name sets were broken, as these names are often the basis for the search.
     * But this is not a good reason for a lack of tests, as the scope implementation is not forced to use these name sets internally, and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. tests/integration/security/testdata/authz/jwt.yaml.tmpl

          values: ["bar"]
      - to:
        - operation:
            paths: ["*/audiences"]
        when:
        - key: request.auth.audiences
          values: ["foo"]
      - to:
        - operation:
            paths: ["/token3"]
            methods: ["GET"]
        from:
        - source:
            notRequestPrincipals: ["******@****.***/sub-1"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. 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)
Back to top