Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,839 for ignored2 (0.23 sec)

  1. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithConstants.groovy

        public static final String STRING_CONST = 'some-string'
        static final Object OBJECT_CONST = new GroovyClassWithConstants()
        static final def BIG_DECIMAL_CONST = 1.02
    
        String ignored = 'ignore'
        final int ignored2 = 1001
        static def ignored3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 356 bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithConstants.java

        static final char CHAR_CONST = 'a';
        static final int INT_CONST = 9;
        protected static final Object OBJECT_CONST = new JavaClassWithConstants();
    
        static String ignored = "ignore";
        String ignored2 = "ignore";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 353 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

                twiceIgnoredProperty: [(TYPE): Ignored]
            ], [
                strict(ignoredAnnotatedPropertyMessage { property('twiceIgnoredProperty').ignoring('Ignored').alsoAnnotatedWith('Ignored2').includeLink() })
            ]
        }
    
        @SuppressWarnings("unused")
        interface TypeWithIgnoredPropertyWithMultipleIgnoreAnnotations {
            @Ignored
            @Ignored2
            String getTwiceIgnoredProperty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert_test.go

    				Int3:     3,
    				Ignored:  1,
    				Ignored2: "ignored",
    			},
    			expected: url.Values{"float1": {"23.5"}, "float2": {"100.7"}, "int1": {"1"}, "int2": {"2"}, "int3": {"3"}},
    		},
    		{
    			// include fields that are not tagged omitempty
    			input: &foo{
    				NamedStr: "named str",
    			},
    			expected: url.Values{"str": {""}, "namedStr": {"named str"}},
    		},
    		{
    			input: &baz{
    				Ptr:  intp(5),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 03 07:01:02 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

    public class ATestClassWithIgnoredMethod {
        @Test
        @Ignore
        public void ignored() {
        }
    }
    
    public class ATestClassWithFailedTestAssumption {
        @Test
        public void assumed() {
            assumeTrue(false)
        }
    }
    
    @Ignore
    public class AnIgnoredTestClass {
        @Test
        public void ignored() {
        }
    
        @Test
        public void ignored2() {
        }
    }
    
    public class ABrokenTestClass {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            0 * processor._
        }
    
        def "executes an ignored JUnit 4 test class"() {
            when:
            process(AnIgnoredTestClass)
    
            then:
            1 * processor.started({it.id == 1}, {it.parentId == null})
            1 * processor.started({ it.id == 2 && it.name == "ignored2" && it.className == AnIgnoredTestClass.name }, { it.parentId == 1 })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  7. src/log/slog/internal/ignorepc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package internal
    
    // If IgnorePC is true, do not invoke runtime.Callers to get the pc.
    // This is solely for benchmarking the slowdown from runtime.Callers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 338 bytes
    - Viewed (0)
  8. src/cmd/doc/testdata/nested/ignore.go

    //go:build ignore
    // +build ignore
    
    // Ignored package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 70 bytes
    - Viewed (0)
  9. releasenotes/notes/ignore-port.yaml

    - |
      **Fixed** an issue causing traffic to match an unexpected route when using wildcard domain names and including an port in the `Host` header.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:11 UTC 2022
    - 581 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated.png

    java-library-ignore-deprecated.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top