Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,641 for Lach (0.21 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/BehindFlagFeatureInterceptor.groovy

            requires.value().each { RequiredFeature feat ->
                required[feat.feature()] = feat.value()
            }
        }
    
        static Map<String, String> requiredFeatures(Annotation[] testAnnotations) {
            Map<String, String> required = [:]
            getAllAnnotations(testAnnotations, RequiredFeature).each { required[it.feature()] = it.value() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

            authors = ivy.info[0].ivyauthor
    
            extraInfo = [:]
            ivy.info[0].children().findAll { it.name() instanceof QName }.each {
                extraInfo[new javax.xml.namespace.QName(it.name().namespaceURI, it.name().localPart)] = it.text()
            }
    
            ivy.configurations.conf.each {
                configurations[it.@name] = new IvyDescriptorConfiguration(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         * @param action The action to execute for each element becomes known.
         */
        <S> void whenElementKnown(Class<S> type, Action<? super S> action);
    
        /**
         * Registers an action to execute when an element is finalized. The action is only executed for those elements that are required. Fails if any element has already been finalized.
         *
         * @param action The action to execute for each element when finalized.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

            (0..10).each { count ->
                assert events.statusMatches("${count} tests? completed(,.*)*")
            }
    
            and:
            (1..3).each { count ->
                assert events.statusMatches("\\d+ tests? completed, ${count} failed(,.*)?")
            }
    
            and:
            (1..2).each { count ->
                assert events.statusMatches("\\d+ tests? completed,( \\d failed,)? ${count} skipped")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/metrics/metrics.go

    var (
    	// EndpointsAddedPerSync tracks the number of endpoints added on each
    	// Endpoints sync.
    	EndpointsAddedPerSync = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      EndpointSliceMirroringSubsystem,
    			Name:           "endpoints_added_per_sync",
    			Help:           "Number of endpoints added on each Endpoints sync",
    			StabilityLevel: metrics.ALPHA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:35 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

                });
            } else {
                row.find("td,th").each(function(index){
                    $(this).addClass(slices[index]);
                })
            }
        });
    
        // Add alternate row styles for tables
        $("table").each(function () {
            var counter = 0;
            var rows = $(this).find("tr");
            if (rows.length != 1) {
                rows.each(function () {
                    var e = $(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/html5.js

    ")),!c&&e.attr("list")){var l=[],m=a("#"+e.attr("list"));if(m.find("option").each(function(){l.push(a(this).text())}),0===l.length){var n=a.trim(a("#"+e.attr("list")).text()).split("\n");a.each(n,function(b,c){l.push(a.trim(c))})}m.remove(),a.formUtils.suggest(e,l)}if(b.length){f||(h["data-validation-optional"]="true"),g=!0;var o=(e.attr("data-validation")||"")+" "+b.join(" ");e.attr("data-validation",a.trim(o)),a.each(h,function(a,b){e.attr(a,b)})}}),g&&e.trigger("html5ValidationAttrsFound"),b|...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/ztunnel.libsonnet

        + row.withPanels([
          panels.timeSeries.base('Ztunnel Versions', queries.istioBuild, 'Version number of each running instance'),
          panels.timeSeries.bytes('Memory Usage', queries.memUsage, 'Memory usage of each running instance'),
          panels.timeSeries.base('CPU Usage', queries.cpuUsage, 'CPU usage of each running instance'),
        ]),
        row.new('Network')
        + row.withPanels([
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents/build.gradle

            }
        }
        components {
            all {
                targetPlatform "x86"
            }
        }
        components {
    <%
    components.each { component ->
        out.println """
            ${component.name}(${component.type}) {
                binaries.all {"""
        component.deps.each { dep ->
            out.println """
                    lib project: '${dep.project}', library: '${dep.library}', linkage: '${dep.linkage}'"""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioSolutionFile.groovy

        void setProjects(List<VisualStudioProjectMetadata> projects) {
            projects.each { VisualStudioProjectMetadata project ->
                this.projects[project.file] = project.name
                if (!this.projectConfigurations.containsKey(project.file)) {
                    this.projectConfigurations[project.file] = new HashSet<>()
                }
                project.configurations.each { configuration ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top