Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 226 for broken1 (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

                ${packageName ? "package $packageName" : ""}
    
                class $className implements $Plugin.name<$Project.name> {
                    $className() { throw new RuntimeException("broken plugin") }
                    void apply($Project.name project) {
                    }
                }
            """)
            this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    		// tests for broken code that doesn't type-check
    		{broken + `x0; func _() { var x struct {f string}; x.f := 0 }`, `x.f`, `string`},
    		{broken + `x1; func _() { var z string; type x struct {f string}; y := &x{q: z}}`, `z`, `string`},
    		{broken + `x2; func _() { var a, b string; type x struct {f string}; z := &x{f: a, f: b,}}`, `b`, `string`},
    		{broken + `x3; var x = panic("");`, `panic`, `func(interface{})`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. src/crypto/sha1/sha1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package sha1 implements the SHA-1 hash algorithm as defined in RFC 3174.
    //
    // SHA-1 is cryptographically broken and should not be used for secure
    // applications.
    package sha1
    
    import (
    	"crypto"
    	"crypto/internal/boring"
    	"errors"
    	"hash"
    	"internal/byteorder"
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top