Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 337 for broken2 (0.14 sec)

  1. 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)
  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/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)
  5. 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)
  6. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/reporters/script-plugin/src/main/groovy/reporters.script.plugin.gradle

                    .solution("Please use 'warningTask2' instead of this task")
            }
        }
    }
    
    tasks.register('failingTask') {
        doLast {
            problems.forNamespace('buildscript').throwing {
                it.id('broken-task', 'Task should not be called')
                    .contextualLabel("Task 'failingTask' should not be called")
                    .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/virtualservice_gateways.yaml

    # Broken config in a yaml config file
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        istio: ingressgateway
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: crossnamespace-gw
      namespace: another
    spec:
      selector:
        istio: ingressgateway
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourcesIntegrationTest.groovy

            given:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec)
        }
    }
             """
    
            and:
            file("src/main/rc/broken.rc") << """
            #include <stdio.h>
    
            NOT A VALID RESOURCE
    """
    
            expect:
            fails "mainExecutable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. ci/README.md

    and deploy TensorFlow. This folder is typically used by continuous integration
    (CI) tools to build and test TensorFlow whenever there is a change to the
    code. This folder is broken into subfolders that represent the level of support
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 825 bytes
    - Viewed (0)
Back to top