Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for suspicious (0.14 sec)

  1. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                        .filterNot { it.trim().startsWith("//") }
                        .joinToString("\n")
                    if (text.contains(content) && exceptions.all { !text.contains(it) }) {
                        println("Found suspicious test file: $file")
                        return true
                    }
                }
            }
            return false
        }
    
        @Test
        fun allSubprojectsDefineTheirFunctionTestPropertyCorrectly() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 10:00:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformUpstreamDependenciesResolver.java

            ResolvedComponentResult targetComponent = findComponent(value, componentIdentifier);
    
            if (targetComponent == null) {
                // TODO: This is very suspicious. We should always fail here.
                // `strict` was added because file dependencies' components are never included in the graph.
                // We should detect this earlier and return no dependencies there to avoid `strict`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/net/http/transfer.go

    	// to the bufio.Reader's max size, looking for a double CRLF.
    	// This limits the trailer to the underlying buffer size, typically 4kB.
    	if !seeUpcomingDoubleCRLF(b.r) {
    		return errors.New("http: suspiciously long trailer after chunked body")
    	}
    
    	hdr, err := textproto.NewReader(b.r).ReadMIMEHeader()
    	if err != nil {
    		if err == io.EOF {
    			return errTrailerEOF
    		}
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top