Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for wren (0.09 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            """
    
            when:
            succeeds ":consumer-included-build:app:resolve"
    
            then:
            def outputDirs = projectOutputDirs("project-artifact.jar", "project-artifact.jar.txt")
            outputDirs.size() == 2
            (outputDirs.parentFile.name as Set).size() == 2
        }
    
        def "transform is re-executed when input file content changes between builds"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // build treats them as a list of source files specifying a single package.
    //
    // When compiling packages, build ignores files that end in '_test.go'.
    //
    // When compiling a single main package, build writes the resulting
    // executable to an output file named after the last non-major-version
    // component of the package import path. The '.exe' suffix is added
    // when writing a Windows executable.
    // So 'go build example/sam' writes 'sam' or 'sam.exe'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

       *
       * <p>The function is applied lazily, invoked when needed. This is necessary for the returned map
       * to be a view, but it means that the function will be applied many times for bulk operations
       * like {@link Map#containsValue} and {@code Map.toString()}. For this to perform well, {@code
       * function} should be fast. To avoid lazy evaluation when the returned map doesn't need to be a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		return
    	}
    
    	// The scheduler lock cannot be held when calling wakeNetPoller below
    	// because wakeNetPoller may call wakep which may call startm.
    	when := pp.timers.wakeTime()
    	pidleput(pp, 0)
    	unlock(&sched.lock)
    
    	if when != 0 {
    		wakeNetPoller(when)
    	}
    }
    
    // Tries to add one more P to execute G's.
    // Called when a G is made runnable (newproc, ready).
    // Must be called with a P.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. fastapi/applications.py

                bool,
                Doc(
                    """
                    Whether to generate separate OpenAPI schemas for request body and
                    response body when the results would be more precise.
    
                    This is particularly useful when automatically generating clients.
    
                    For example, if you have a model like:
    
                    ```python
                    from pydantic import BaseModel
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    		return nil, err
    	}
    	return db.prepareDC(ctx, dc, dc.releaseConn, nil, query)
    }
    
    // prepareDC prepares a query on the driverConn and calls release before
    // returning. When cg == nil it implies that a connection pool is used, and
    // when cg != nil only a single driver connection is used.
    func (db *DB) prepareDC(ctx context.Context, dc *driverConn, release func(error), cg stmtConnGrabber, query string) (*Stmt, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/net/http/server.go

    // Errors used by the HTTP server.
    var (
    	// ErrBodyNotAllowed is returned by ResponseWriter.Write calls
    	// when the HTTP method or response code does not permit a
    	// body.
    	ErrBodyNotAllowed = errors.New("http: request method or response status code does not allow body")
    
    	// ErrHijacked is returned by ResponseWriter.Write calls when
    	// the underlying connection has been hijacked using the
    	// Hijacker interface. A zero-byte write on a hijacked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// take more than 1s to finish if the container runtime responds slowly
    	// and/or when there are many container changes in one cycle.
    	genericPlegRelistPeriod    = time.Second * 1
    	genericPlegRelistThreshold = time.Minute * 3
    
    	// Generic PLEG relist period and threshold when used with Evented PLEG.
    	eventedPlegRelistPeriod     = time.Second * 300
    	eventedPlegRelistThreshold  = time.Minute * 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    // loading functions.
    type PackageOpts struct {
    	// IgnoreImports controls whether we ignore explicit and implicit imports
    	// when loading packages.  Implicit imports are added when supporting Cgo
    	// or SWIG and when linking main packages.
    	IgnoreImports bool
    
    	// ModResolveTests indicates whether calls to the module loader should also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    			// so that reconciler can clean up volume when needed. However, volume resize failed,
    			// we should not mark the volume as mounted to avoid pod starts using it.
    			// Considering the above situations, we mark volume as uncertain here so that reconciler will trigger
    			// volume tear down when pod is deleted, and also makes sure pod will not start using it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top