Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for capturing (0.16 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   FlushInfoLog() - flushes informational log messages.
    //
    // Stdout and stderr capturing:
    //   CaptureStdout()     - starts capturing stdout.
    //   GetCapturedStdout() - stops capturing stdout and returns the captured
    //                         string.
    //   CaptureStderr()     - starts capturing stderr.
    //   GetCapturedStderr() - stops capturing stderr and returns the captured
    //                         string.
    //
    // Integer types:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   FlushInfoLog() - flushes informational log messages.
    //
    // Stdout and stderr capturing:
    //   CaptureStdout()     - starts capturing stdout.
    //   GetCapturedStdout() - stops capturing stdout and returns the captured
    //                         string.
    //   CaptureStderr()     - starts capturing stderr.
    //   GetCapturedStderr() - stops capturing stderr and returns the captured
    //                         string.
    //
    // Integer types:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    	runeSize = 4 // rune is int32
    )
    
    type parser struct {
    	flags       Flags     // parse mode flags
    	stack       []*Regexp // stack of parsed expressions
    	free        *Regexp
    	numCap      int // number of capturing groups seen
    	wholeRegexp string
    	tmpClass    []rune            // temporary char class work space
    	numRegexp   int               // number of regexps allocated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      ::mlir::LogicalResult matchAndRewrite(
          ::mlir::Operation *fused_batch_norm,
          ::mlir::PatternRewriter &rewriter) const override {
        // Variables for capturing values and attributes used for creating ops
        Operation::operand_range mean(fused_batch_norm->getOperands());
        ::mlir::FloatAttr exponential_avg_factor;
        ::mlir::TF::FusedBatchNormV3Op root;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    	//	"(/\w*)?" doesn't match anything here (it's an optional part of the triplet)
    	//	"\s*:\s*" matches " : " (semi-colon)
    	//	"(" starts a capturing group
    	//      first reMatchCheck matches "-`ADD`"
    	//	`(?:" starts a non-capturing group
    	//	"\s*,\s*` matches " , "
    	//	second reMatchCheck matches "`SUB`"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    	}
    
    	readObjData := func() []byte {
    		inf, err := os.Open(h.file)
    		if err != nil {
    			log.Fatalf("capturing host obj: open failed on %s: %v", h.pn, err)
    		}
    		defer inf.Close()
    		res := make([]byte, h.length)
    		if n, err := inf.ReadAt(res, h.off); err != nil || n != int(h.length) {
    			log.Fatalf("capturing host obj: readat failed on %s: %v", h.pn, err)
    		}
    		return res
    	}
    
    	// Write the object file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    )
    
    type APIInstaller struct {
    	group             *APIGroupVersion
    	prefix            string // Path prefix where API resources are to be registered.
    	minRequestTimeout time.Duration
    }
    
    // Struct capturing information about an action ("GET", "POST", "WATCH", "PROXY", etc).
    type action struct {
    	Verb          string               // Verb identifying the action ("GET", "POST", "WATCH", "PROXY", etc).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    			gp.inMarkAssist = false
    		}
    	}
    }
    
    // gcAssistAlloc1 is the part of gcAssistAlloc that runs on the system
    // stack. This is a separate function to make it easier to see that
    // we're not capturing anything from the user stack, since the user
    // stack may move while we're in this function.
    //
    // gcAssistAlloc1 indicates whether this assist completed the mark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    When the producer and the consumer tasks are executing at the same time, the build fails to avoid capturing an incorrect state.
    
    Such validation improves the robustness of the build, allowing you to identify issues related to inputs and outputs quickly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    include::sample[dir="snippets/configurationCache/disallowedTypes/groovy",files="build.gradle[tags=ad-hoc-task]"]
    ====
    <1> this will be reported as a problem because the `doLast {}` closure is capturing a reference to the `SourceSet`
    
    You still need to fulfil the same requirement, that is not referencing a disallowed type.
    Here's how the task declaration above can be fixed:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top