Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,343 for detects (0.13 sec)

  1. src/net/http/httptest/recorder.go

    func (rw *ResponseRecorder) Header() http.Header {
    	m := rw.HeaderMap
    	if m == nil {
    		m = make(http.Header)
    		rw.HeaderMap = m
    	}
    	return m
    }
    
    // writeHeader writes a header if it was not written yet and
    // detects Content-Type if needed.
    //
    // bytes or str are the beginning of the response body.
    // We pass both to avoid unnecessarily generate garbage
    // in rw.WriteString which was created for performance reasons.
    // Non-nil bytes win.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_java_projects.adoc

    If Gradle detects an annotation processor on the compile classpath, the annotation processor classpath defaults to the compile classpath when not explicitly set, which in turn means the entire compile classpath is treated as a runtime classpath input.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

                throw new RuntimeException("Boom")
            """
    
            when:
            withWatchFs().fails("help")
            then:
            failureHasCause("Boom")
        }
    
        def "detects when a task removes the build directory #buildDir"() {
            buildFile << """
                apply plugin: 'base'
    
                project.buildDir = file("${buildDir}")
    
                task myClean(type: Delete) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

    class MissingTaskDependenciesIntegrationTest extends AbstractIntegrationSpec implements ValidationMessageChecker {
    
        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        def "detects missing dependency between two tasks and fails (#description)"() {
            buildFile """
                task producer {
                    def outputFile = file("${producedLocation}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            execHandle.waitForFinish()
    
            then:
            execHandle.state == ExecHandleState.SUCCEEDED
        }
    
        @Ignore //not yet implemented
        //it may not be easily testable
        void "detach detects when process did not start or died prematurely"() {
            def execHandle = handle().args(args(BrokenApp.class)).build()
    
            when:
            execHandle.start()
            def detachResult = execHandle.detach()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/server-workers.md

    You can see that:
    
    * The Gunicorn **process manager** starts with PID `19499` (in your case it will be a different number).
    * Then it starts `Listening at: http://0.0.0.0:80`.
    * Then it detects that it has to use the worker class at `uvicorn.workers.UvicornWorker`.
    * And then it starts **4 workers**, each with its own PID: `19511`, `19513`, `19514`, and `19515`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                additionalData.asMap == [
                    'typeName' : 'MyTask',
                    'propertyName' : 'setPropertyInput',
                ]
            }
        }
    
        def "detects problems with file inputs"() {
            file("input.txt").text = "input"
            file("input").createDir()
    
            javaTaskSource << """
                import org.gradle.api.*;
                import org.gradle.api.file.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package cgocall defines an Analyzer that detects some violations of
    // the cgo pointer passing rules.
    package cgocall
    
    import (
    	"fmt"
    	"go/ast"
    	"go/format"
    	"go/parser"
    	"go/token"
    	"go/types"
    	"log"
    	"os"
    	"strconv"
    
    	"golang.org/x/tools/go/analysis"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. pkg/proxy/endpointschangetracker.go

    	eps := make(map[types.NamespacedName]int)
    	localIPs := em.getLocalReadyEndpointIPs()
    	for nsn, ips := range localIPs {
    		eps[nsn] = len(ips)
    	}
    	return eps
    }
    
    // detectStaleConntrackEntries detects services that may be associated with stale conntrack entries.
    // (See UpdateEndpointsMapResult.DeletedUDPEndpoints and .NewlyActiveUDPServices.)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            when:
            def detector = createDefaultJvmMetadataDetector(execHandleFactory)
            def javaHome = new File(temporaryFolder, "localGradle").tap { mkdirs() }
            def metadata = detector.getMetadata(testLocation(javaHome))
    
            then:
            metadata
            tmpDir.assertIsEmptyDir()
        }
    
        def "can detect metadata of #displayName"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top