Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,524 for _ignored (0.17 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         * from levels lower than the specified granularity will be ignored.
         * <p>The default granularity is -1, which specifies that test events from only the most granular level should be logged.  In other words, if a test method is not parameterized, only events
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

             <artifact name="foo-1.0.jar">
                <ignored-keys>
                   <ignored-key id="ABCdef"/>
                </ignored-keys>
             </artifact>
             <artifact name="foo-1.0.pom">
                <ignored-keys>
                   <ignored-key id="123"/>
                   <ignored-key id="456" reason="bad things happen"/>
                </ignored-keys>
             </artifact>
          </component>
       </components>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/patches/patches.go

    		return nil, err
    	}
    
    	if len(patchFiles) > 0 {
    		fmt.Fprintf(output, "[patches] Found the following patch files: %v\n", patchFiles)
    	}
    	if len(ignoredFiles) > 0 {
    		fmt.Fprintf(output, "[patches] Ignored the following files: %v\n", ignoredFiles)
    	}
    
    	pm := &PatchManager{
    		patchSets:    patchSets,
    		knownTargets: knownTargets,
    		output:       output,
    	}
    	pathLock.Lock()
    	pathCache[path] = pm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K 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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

             <artifact name="foo-1.0.jar">
                <ignored-keys>
                   <ignored-key id="ABC"/>
                </ignored-keys>
             </artifact>
             <artifact name="foo-1.0.pom">
                <ignored-keys>
                   <ignored-key id="123" reason="so wrong!"/>
                </ignored-keys>
             </artifact>
          </component>
       </components>
    </verification-metadata>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/text/template/parse/lex.go

    func (l *lexer) emitItem(i item) stateFn {
    	l.item = i
    	return nil
    }
    
    // ignore skips over the pending input before this point.
    // It tracks newlines in the ignored text, so use it only
    // for text that is skipped without calling l.next.
    func (l *lexer) ignore() {
    	l.line += strings.Count(l.input[l.start:l.pos], "\n")
    	l.start = l.pos
    	l.startLine = l.line
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K 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. okhttp/src/test/java/okhttp3/OkHttpClientTest.kt

        } catch (ignored: IllegalArgumentException) {
        }
        try {
          builder.connectTimeout(Duration.ofNanos(1))
        } catch (ignored: IllegalArgumentException) {
        }
        try {
          builder.writeTimeout(Duration.ofNanos(1))
        } catch (ignored: IllegalArgumentException) {
        }
        try {
          builder.readTimeout(Duration.ofNanos(1))
        } catch (ignored: IllegalArgumentException) {
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/xml/XmlTransformer.java

                    TransformerFactory factory = XmlFactories.newTransformerFactory();
                    try {
                        factory.setAttribute("indent-number", indentAmount);
                    } catch (IllegalArgumentException ignored) {
                        /* unsupported by this transformer */
                    }
    
                    javax.xml.transform.Transformer transformer = factory.newTransformer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:15:53 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            expect:
            def module = registry.getModule("gradle-some-module")
            module.implementationClasspath.asFiles == [jarFile]
            module.runtimeClasspath.asFiles == [runtimeDep]
        }
    
        def "ignores external module jar from runtime ClassLoader"() {
            def classesDir = tmpDir.createDir("some-module/build/classes/java/main")
            def staticResourcesDir = tmpDir.createDir("some-module/src/main/resources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top