Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 706 for Captured (0.2 sec)

  1. guava/src/com/google/common/reflect/TypeCapture.java

    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    
    /**
     * Captures the actual type of {@code T}.
     *
     * @author Ben Yu
     */
    @ElementTypesAreNonnullByDefault
    abstract class TypeCapture<T> {
    
      /** Returns the captured type. */
      final Type capture() {
        Type superclass = getClass().getGenericSuperclass();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/config/config.go

    	// StartTime is the start time the log capture time range.
    	// If set, Since must be unset.
    	StartTime time.Time `json:"startTime,omitempty"`
    	// EndTime is the end time the log capture time range.
    	// Default is now.
    	EndTime time.Time `json:"endTime,omitempty"`
    	// Since defines the start time the log capture time range.
    	// StartTime is set to EndTime - Since.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/InstrumentedClasses.groovy

            def capturedParams = originalClosure.class.declaredConstructors[0].parameters.drop(2)
            if (capturedParams.size() != 0) {
                // TODO support captured args in some way?
                throw new IllegalArgumentException("closures with captured arguments are not supported yet; please use the arguments and return value")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/objectFunction.capturing.txt

    No captured values...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 18 bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginSyntheticIntegrationTest.kt

                assertNotOutput("STDERR from plugins block")
                // TODO logging is not captured yet
                assertOutputContains("LIFECYCLE")
                assertOutputContains("WARN")
                assertHasErrorOutput("ERROR")
            }
        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/12955")
        fun `captures output of schema collection but not of concurrent tasks`() {
    
            val repeatOutput = 50
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLambdaParameterClosure.capturing.txt

    No captured values...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:39 UTC 2023
    - 19 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionParameterClosure.capturing.txt

    No captured values...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:39 UTC 2023
    - 19 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionExtensionReceiverClosure.capturing.txt

    No captured values...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:39 UTC 2023
    - 19 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionLocalClosure.capturing.txt

    No captured values...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:39 UTC 2023
    - 19 bytes
    - Viewed (0)
  10. tools/istio-clean-iptables/pkg/config/config.go

    	}
    	// Lookup DNS nameservers. We only do this if DNS is enabled in case of some obscure theoretical
    	// case where reading /etc/resolv.conf could fail.
    	// If capture all DNS option is enabled, we don't need to read from the dns resolve conf. All
    	// traffic to port 53 will be captured.
    	if c.RedirectDNS && !c.CaptureAllDNS {
    		dnsConfig, err := dns.ClientConfigFromFile("/etc/resolv.conf")
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top