Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 864 for broken1 (0.15 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            given:
            app.writeToProject(testDirectory)
            file("src/main/cpp/ignore.swift") << 'broken!'
            file("src/main/cpp/ignore.c") << 'broken!'
            file("src/main/cpp/ignore.m") << 'broken!'
            file("src/main/cpp/ignore.h") << 'broken!'
            file("src/main/cpp/ignore.java") << 'broken!'
    
            and:
            buildFile << """
                apply plugin: 'cpp-application'
             """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  2. pkg/scheduler/metrics/resources/resources.go

    }
    
    var podResourceDesc = resourceMetricsDescriptors{
    	requests: resourceLifecycleDescriptors{
    		total: metrics.NewDesc("kube_pod_resource_request",
    			"Resources requested by workloads on the cluster, broken down by pod. This shows the resource usage the scheduler and kubelet expect per pod for resources along with the unit for the resource if any.",
    			[]string{"namespace", "pod", "node", "scheduler", "priority", "resource", "unit"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AggregatingProcessorTest.groovy

            given:
            def sourceRetentionAnnotation = annotation("Broken", RetentionPolicy.SOURCE)
    
            when:
            processor.process([sourceRetentionAnnotation] as Set, roundEnvironment)
    
            then:
            result.fullRebuildCause.contains("'@Broken' has source retention.")
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

        }
    
        def "build fails when compilation fails"() {
            given:
            buildFile << """
                apply plugin: 'swift-library'
             """
    
            and:
            file("src/main/swift/broken.swift") << "broken!"
    
            expect:
            fails "assemble"
            failure.assertHasDescription("Execution failed for task ':compileDebugSwift'.")
            failure.assertHasCause("A build operation failed.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/StyledTextOutputBackedRendererTest.groovy

            RenderableOutputEvent event = Mock()
            def failure = new RuntimeException('broken')
    
            when:
            renderer.onOutput(event)
    
            then:
            1 * event.render(!null) >> { args -> args[0].exception(failure) }
            output.value == 'java.lang.RuntimeException: broken\n{stacktrace}\n'
        }
    
        def rendersOutputEventWhenInDebugMode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetectorTest.groovy

        }
    
        AnnotationProcessorDetector detector = new AnnotationProcessorDetector(new TestFileContentCacheFactory(), logger, true)
    
        def "detects no processors in broken jars"() {
            given:
            def jar = tmpDir.file("classes.jar")
            jar << "broken"
            def cp = files(jar)
    
            when:
            def processors = detector.detectProcessors(cp)
    
            then:
            processors == [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// If "no changes" succeeds and "all changes" fails,
    	// we're looking for a minimal set of changes to enable to provoke the failure
    	// (broken = runY, b.Negate = false)
    	// If "no changes" fails and "all changes" succeeds,
    	// we're looking for a minimal set of changes to disable to provoke the failure
    	// (broken = runN, b.Negate = true).
    
    	b.Logf("checking target with all changes disabled")
    	runN := b.Run("n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppHelloWorldApp.groovy

      }
      return -1;
    }"""),
                ]
                List<SourceFile> headerFiles = [
                ]
            }
        }
    
        SourceFile getBrokenFile() {
            return sourceFile("cpp", "broken.cpp", """'broken""")
        }
    
        @Override
        String getSourceSetType() {
            return "CppSourceSet"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            def header1 = includeDir.createFile("test.h")
            includePaths << includeDir
    
            macros << macro("TEST", '"test.h"')
            macros << macro("IGNORE", "'broken'")
            macros << unresolvableMacro("IGNORE")
    
            expect:
            def result = resolve(include('TEST'))
            result.complete
            result.files.file as List == [header1]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemDiagnosticsFactoryTest.groovy

            expect:
            stream.forCurrentCaller().stack.empty
    
            def failure1 = new Exception("broken")
            def diagnostics1 = stream.forCurrentCaller(failure1)
            diagnostics1.exception == failure1
            !diagnostics1.stack.empty
    
            def failure2 = new Exception("broken")
            def diagnostics2 = factory.forException(failure2)
            diagnostics2.exception == failure2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top