Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for UNTAGGED (0.12 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

    import java.math.BigDecimal;
    
    import static org.gradle.performance.results.report.Tag.FixedTag.UNTAGGED;
    
    public interface Tag {
        String getName();
    
        String getClassAttr();
    
        String getTitle();
    
        String getUrl();
    
        default boolean isValid() {
            return this != UNTAGGED;
        }
    
        enum FixedTag implements Tag {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

                        @RunWith(Parameterized.class)
                        public static class Untagged {
                            @Parameterized.Parameters
                            public static Iterable<Object[]> getParameters() {
                                ArrayList<Object[]> parameters = new ArrayList<>();
                                parameters.add(new Object[] { "untagged" });
                                return parameters;
                            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/IndexPageGenerator.java

    import static org.gradle.performance.results.report.Tag.FixedTag.REGRESSED;
    import static org.gradle.performance.results.report.Tag.FixedTag.UNKNOWN;
    import static org.gradle.performance.results.report.Tag.FixedTag.UNTAGGED;
    
    public class IndexPageGenerator extends AbstractTablePageGenerator {
        public IndexPageGenerator(PerformanceFlakinessDataProvider flakinessDataProvider, PerformanceExecutionDataProvider executionDataProvider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            var currentTags = $(row).attr('tag');
            if (currentTags === undefined) {
                currentTags = ''
            }
            // tag="FAILURE-THRESHOLD(4.16%),FLAKY(9.30%)"
            // tag="UNTAGGED"
            currentTags = currentTags.split(',').map(tag => tag.split('(')[0])
            if (selectedTags.some(tag => currentTags.indexOf(tag) != -1)) {
                $(row).show()
            } else {
                $(row).hide()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterCategoriesOrTagsCoverageIntegrationTest.groovy

                                throw new AssertionError("should be filtered out");
                            }
                        }
    
                        public static class Untagged {
                            @ParameterizedTest
                            @ValueSource(strings = {"untagged"})
                            public void run(String param) {
                                System.err.println("executed " + param);
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_prefer_compatible.txt

    go list -m github.com/russross/blackfriday@cadec560ec52
    stdout '^github.com/russross/blackfriday v2\.0\.0\+incompatible$'
    
    # Similarly, requesting an untagged commit should continue to produce a +incompatible
    # pseudo-version.
    
    go list -m github.com/rsc/legacytest@7303f7796364
    stdout '^github.com/rsc/legacytest v2\.0\.1-0\.20180717164253-7303f7796364\+incompatible$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/module/pseudo.go

    // including prereleases. However, not all authors tag versions at all,
    // and not all commits a user might want to try will have tags.
    // A pseudo-version is a version with a special form that allows us to
    // address an untagged commit and order that version with respect to
    // other versions we might encounter.
    //
    // A pseudo-version takes one of the general forms:
    //
    //	(1) vX.0.0-yyyymmddhhmmss-abcdef123456
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. build/common.sh

        kube::build::docker_delete_old_containers "${KUBE_DATA_CONTAINER_NAME_BASE}"
        kube::build::docker_delete_old_images "${KUBE_BUILD_IMAGE_REPO}" "${KUBE_BUILD_IMAGE_TAG_BASE}"
    
        V=2 kube::log::status "Cleaning all untagged docker images"
        "${DOCKER[@]}" rmi "$("${DOCKER[@]}" images -q --filter 'dangling=true')" 2> /dev/null || true
      fi
    
      if [[ -d "${LOCAL_OUTPUT_ROOT}" ]]; then
        kube::log::status "Removing _output directory"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. src/encoding/json/encode_test.go

    	XXX string `json:"S"`
    }
    
    // BugD's tagged S field should dominate BugA's.
    type BugY struct {
    	BugA
    	BugD
    }
    
    // Test that a field with a tag dominates untagged fields.
    func TestTaggedFieldDominates(t *testing.T) {
    	v := BugY{
    		BugA{"BugA"},
    		BugD{"BugD"},
    	}
    	b, err := Marshal(v)
    	if err != nil {
    		t.Fatal("Marshal error:", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    		// level selected by the usual Go rules), the following extra rules apply:
    
    		// 1) Of those fields, if any are JSON-tagged, only tagged fields are considered,
    		//    even if there are multiple untagged fields that would otherwise conflict.
    		{
    			name: "only tagged field is considered if any are tagged",
    			in: &testEncodableTagMatchesUntaggedName{
    				A:       1,
    				TaggedA: 2,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top