Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 575 for capture1 (0.16 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

        }
    
        /**
         * Fixture for capturing simple test class requirements.  Note that this class should be used only for simple test classes
         * and should not be enhanced to capture complex test classes with arbitrary features.  Complex test classes should be captured
         * with a raw {@link TestSource} fixture.
         */
        class TestClass {
            final String name
            final String packageName
            final String sourceSet
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. src/runtime/tracestack.go

    	// value at pcBuf[0] represents a skip value to apply to the physical stack in
    	// pcBuf[1:] after inline expansion.
    	logicalStackSentinel = ^uintptr(0)
    )
    
    // traceStack captures a stack trace from a goroutine and registers it in the trace
    // stack table. It then returns its unique ID. If gp == nil, then traceStack will
    // attempt to use the current execution context.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. tools/istio-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: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ====
    <1> `doLast` action captures the references from the enclosing scope. These captured references are also serialized to the configuration cache.
    <2> Compare the reference to an object of user-defined class stored in the task field and the reference captured in the `doLast` action.
    <3> Compare the reference to `ArrayList` instance stored in the task field and the reference captured in the `doLast` action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeResolverTest.java

                .where(
                    new TypeCapture<Iterable<Map<?, V>>>() {}.capture(),
                    new TypeCapture<Iterable<Map<String, Integer>>>() {}.capture());
        assertEquals(
            new TypeCapture<K>() {}.capture(), resolver.resolveType(new TypeCapture<K>() {}.capture()));
        assertEquals(Integer.class, resolver.resolveType(new TypeCapture<V>() {}.capture()));
      }
    
      public <T> void testWhere_mapFromWildcard() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

     *
     * result.groupedOutput.task(":compileJava")
     *     .assertOutputContains("Compiling with toolchain")
     * </pre>
     */
    public class GroupedOutputFixture {
        /**
         * All tasks will start with > Task, captures everything starting with : and going until end of line
         */
        private final static String TASK_HEADER = "> Task (:[\\w:]*) ?(FAILED|FROM-CACHE|UP-TO-DATE|SKIPPED|NO-SOURCE)?\\n";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

         *
         * @param type the {@literal Class}
         * @param <T> the parameterized type of the given {@literal Class}
         * @return the {@literal TypeOf} that captures the generic type of the given {@literal Class}
         */
        public static <T> TypeOf<T> typeOf(Class<T> type) {
            return new TypeOf<T>(
                ModelType.of(typeWhichCannotBeNull(type))) {
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tutorial/logging/groovy/build.gradle

    // end::use-println[]
    
    // tag::capture-stdout[]
    logging.captureStandardOutput LogLevel.INFO
    println 'A message which is logged at INFO level'
    // end::capture-stdout[]
    
    // tag::task-capture-stdout[]
    tasks.register('logInfo') {
        logging.captureStandardOutput LogLevel.INFO
        doFirst {
            println 'A task message which is logged at INFO level'
        }
    }
    // end::task-capture-stdout[]
    
    // tag::use-slf4j[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

        [SingleBlockImplicitTerminator<"ReturnOp">]> {
      let summary = [{
    The `tf_device.launch` op launches containing operations on target device.
      }];
    
      let description = [{
    This op captures all needed live-in values.
      }];
    
      let arguments = (ins
        StrAttr:$device
      );
    
      let results = (outs
        Variadic<AnyType>:$results
      );
    
      let regions = (region SizedRegion<1>:$body);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractLoggingHooksFunctionalTest.groovy

            run("log")
            def captured = file("output.txt").text
    
            then:
            captured.contains("[DEBUG] [org.gradle.api.Task] debug")
            captured.contains("[INFO] [org.gradle.api.Task] info")
            captured.contains("[LIFECYCLE] [org.gradle.api.Task] lifecycle")
            captured.contains("[WARN] [org.gradle.api.Task] warn")
            captured.contains("[ERROR] [org.gradle.api.Task] error")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top