Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for inflated (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            outputContains("service: value is 16")
            outputContains("service: closed with value 6")
            outputContains("service: closed with value 16")
        }
    
        def "service parameters are isolated when the service is instantiated"() {
            serviceImplementation()
            buildFile << """
                def params
    
                def provider = gradle.sharedServices.registerIfAbsent("counter", CountingService) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[sec:test_execution]]
    == Test execution
    
    Gradle executes tests in a separate ('forked') JVM, isolated from the main build process. This prevents classpath pollution and excessive memory consumption for the build process. It also allows you to run the tests with different JVM arguments than the build is using.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// objects whose podSelector matches the pod.
    	// If this field is empty then this NetworkPolicy does not allow any traffic
    	// (and serves solely to ensure that the pods it selects are isolated by default).
    	// +optional
    	// +listType=atomic
    	Ingress []NetworkPolicyIngressRule `json:"ingress,omitempty" protobuf:"bytes,2,rep,name=ingress"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                        analyzers.add(analyzer);
                        analyzer.killAll();
                    } catch (Exception e) {
                        getLogger().warn("Problem killing isolated daemons of Gradle version " + version + " in " + dir, e);
                    }
                }
            }
    
            if (checkDaemonCrash) {
                analyzers.forEach(DaemonLogsAnalyzer::assertNoCrashedDaemon);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    	tmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject:      pkix.Name{CommonName: "test"},
    		ExtraExtensions: []pkix.Extension{
    			{
    				Id: asn1.ObjectIdentifier{1, 2, 3},
    				// Ballast to inflate the certificate beyond the
    				// regular handshake record size.
    				Value: make([]byte, 65536),
    			},
    		},
    	}
    	cert, err := x509.CreateCertificate(rand.Reader, tmpl, tmpl, k.Public(), k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    // DrvInfoDetailData is driver information details structure (provides detailed information about a particular driver information structure)
    type DrvInfoDetailData struct {
    	size            uint32 // Use unsafeSizeOf method
    	InfDate         Filetime
    	compatIDsOffset uint32
    	compatIDsLength uint32
    	_               uintptr
    	sectionName     [LINE_LEN]uint16
    	infFileName     [MAX_PATH]uint16
    	drvDescription  [LINE_LEN]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	registerBucketLevelFunc(bucketRouter, api, apiFunctions...)
    }
    
    // Takes in Erasure object layer, and the list of API end points to be tested/required, registers the API end points and returns the HTTP handler.
    // Need isolated registration of API end points while writing unit tests for end points.
    // All the API end points are registered only for the default case.
    func initTestAPIEndPoints(objLayer ObjectLayer, apiFunctions []string) http.Handler {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    	// Finish sweep N+1 before returning. We do this both to
    	// complete the cycle and because runtime.GC() is often used
    	// as part of tests and benchmarks to get the system into a
    	// relatively stable and isolated state.
    	for work.cycles.Load() == n+1 && sweepone() != ^uintptr(0) {
    		Gosched()
    	}
    
    	// Callers may assume that the heap profile reflects the
    	// just-completed cycle when this returns (historically this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @return This project. Never returns null.
         */
        Project getProject();
    
        /**
         * <p>Returns an immutable view of this project, safe for use with isolated projects.</p>
         *
         * @return This project as an {@link IsolatedProject}. Never returns null.
         * @since 8.8
         */
        @Incubating
        IsolatedProject getIsolated();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    //
    // Examples:
    //     5x -> 4x + 1x
    //    10x -> 8x + 2x
    //   120x -> 128x - 8x
    //  -120x -> 8x - 128x
    //
    // We know that the rightmost bit of any positive value, once isolated, must either
    // be a power of 2 (because it is a single bit) or 0 (if the original value is 0).
    // In all of these rules we use a rightmost bit calculation to determine one operand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top