Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,101 for ignoreMe (0.13 sec)

  1. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultListenerBuildOperationDecoratorTest.groovy

        def buildOperationRunner = new TestBuildOperationRunner()
        def context = new DefaultUserCodeApplicationContext()
        def decorator = new DefaultListenerBuildOperationDecorator(buildOperationRunner, context)
    
        def 'ignores implementers of InternalListener'() {
            given:
            def action = Mock(InternalAction)
            def buildListener = new InternalBuildAdapter()
            def projectEvaluationListener = Mock(InternalProjectEvaluationListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.0.xsd

            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="ignored-keyType">
            <xs:attribute type="xs:string" name="id" use="required"/>
            <xs:attribute type="xs:string" name="reason"/>
        </xs:complexType>
        <xs:complexType name="ignored-keysType">
            <xs:sequence>
                <xs:element type="ignored-keyType" name="ignored-key"/>
            </xs:sequence>
        </xs:complexType>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

          <verify-metadata>true</verify-metadata>
          <verify-signatures>true</verify-signatures>
          <ignored-keys>
             <ignored-key id="abcdef1234567890" reason="Key is not available in any key server"/>
          </ignored-keys>
       </configuration>
    </verification-metadata>
    ----
    
    As soon as a key is ignored, it will not be used for verification, even if the signature file mentions it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/text/tabwriter/tabwriter.go

    //                    |<- width ->|<- ignored ->|  |
    //                    |           |             |  |
    // [---processed---tab------------<tag>...</tag>...]
    // ^                  ^                         ^
    // |                  |                         |
    // buf                start of incomplete cell  pos
    
    // Formatting can be controlled with these flags.
    const (
    	// Ignore html tags and treat entities (starting with '&'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/MavenArtifactRepository.java

             * Indicates if this repository only contains artifacts.
             *
             * @since 6.4
             */
            boolean isArtifactEnabled();
    
            /**
             * Indicates if this repository ignores Gradle module metadata redirection markers.
             *
             * @since 6.4
             */
            boolean isIgnoreGradleMetadataRedirectionEnabled();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonRegistryUpdaterTest.groovy

            1 * registry.markState(address, Canceled)
        }
    
        def "ignores empty cache on marking busy"() {
            given:
            updater.onStart(address)
            registry.markState(address, Busy) >> { throw new EmptyRegistryException("") }
    
            when:
            updater.onStartActivity()
    
            then:
            noExceptionThrown()
        }
    
        def "ignores empty cache on stopping"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockFileReaderWriterTest.groovy

    foo=a,b
    empty=c
    """.denormalize()
            !lockDir.exists()
        }
    
        def 'reads a legacy lock file'() {
            given:
            def lockFile = lockDir.file('conf.lockfile')
            lockFile << """#Ignored
    line1
    
    line2"""
    
            when:
            def result = lockFileReaderWriter.readLockFile('conf')
    
            then:
            result == ['line1', 'line2']
    
            1 * listener.fileObserved(lockFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/xattr_bsd.go

    		stmp, e := ListxattrNS(file, nsid, dest[pos:])
    
    		/* Errors accessing system attrs are ignored so that
    		 * we can implement the Linux-like behavior of omitting errors that
    		 * we don't have read permissions on
    		 *
    		 * Linux will still error if we ask for user attributes on a file that
    		 * we don't have read permissions on, so don't ignore those errors
    		 */
    		if e != nil {
    			if e == EPERM && nsid != EXTATTR_NAMESPACE_USER {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestEventAdapter.java

            }
        }
    
        @Override
        public void testIgnored(Description description) throws Exception {
            if (methodName(description) == null) {
                // An @Ignored class, ignore the event. We don't get testIgnored events for each method, so we have
                // generate them on our own
                processIgnoredClass(description);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.2.xsd

            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="ignored-keyType">
            <xs:attribute type="xs:string" name="id" use="required"/>
            <xs:attribute type="xs:string" name="reason"/>
        </xs:complexType>
        <xs:complexType name="ignored-keysType">
            <xs:sequence>
                <xs:element type="ignored-keyType" name="ignored-key"/>
            </xs:sequence>
        </xs:complexType>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top