Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 128 for capturing (1.55 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

    import org.gradle.operations.execution.FilePropertyVisitor;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Map;
    
    /**
     * Represents the computation of capturing the before execution state and resolving the caching state for transforms.
     * <p>
     * Must occur as a child of {@link org.gradle.operations.execution.ExecuteWorkBuildOperationType}.
     *
     * @since 8.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. test/closure2.go

    // run
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check that these do not use "by value" capturing,
    // because changes are made to the value during the closure.
    
    package main
    
    var never bool
    
    func main() {
    	{
    		type X struct {
    			v int
    		}
    		var x X
    		func() {
    			x.v++
    		}()
    		if x.v != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 06 18:34:24 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManager.java

                this.loggingSystem = loggingSystem;
                this.level = level;
            }
    
            /**
             * Start this logging system: take a snapshot of the current state and start capturing events if enabled.
             */
            public void start() {
                originalState = loggingSystem.snapshot();
                if (level != null) {
                    loggingSystem.setLevel(level);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. tools/istio-clean-iptables/pkg/cmd/root.go

    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.RedirectDNS, "ISTIO_META_DNS_CAPTURE")
    
    	flag.BindEnv(fs, constants.CaptureAllDNS, "",
    		"Instead of only capturing DNS traffic to DNS server IP, capture all DNS traffic at port 53. This setting is only effective when redirect dns is enabled.",
    		&cfg.CaptureAllDNS)
    
    	flag.BindEnv(fs, constants.InboundInterceptionMode, "m",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pilot/pkg/grpc/grpc.go

    			return true
    		}
    	}
    	return false
    }
    
    // IsExpectedGRPCError checks a gRPC error code and determines whether it is an expected error when
    // things are operating normally. This is basically capturing when the client disconnects.
    func IsExpectedGRPCError(err error) bool {
    	if err == io.EOF {
    		return true
    	}
    
    	if s, ok := status.FromError(err); ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 04:27:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. testing/performance/README.md

    A performance test configures various fixtures to describe each scenario. The fixtures will then run the scenario several times to warm up and then several more times, capturing metrics.
    The metrics are collected in a database under `~/.gradle-performance-test-data` and a report is generated into `build/performance-tests/report`.
    
    ### Performance test builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphEdge.java

    @Deprecated
    public class MetadataGraphEdge {
        String version;
        ArtifactScopeEnum scope;
        int depth = -1;
        int pomOrder = -1;
        boolean resolved = true;
        String artifactUri;
    
        /**
         * capturing where this link came from
         * and where it is linked to.
         *
         *   In the first implementation only source used for explanatory function
         */
        MetadataGraphVertex source;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_passes.h

    namespace tensorflow {
    
    // Add the TF to TFLite passes, specified in the pass_config, into a
    // pass_manager. The session object will be provided when the TF MLIR is
    // imported from saved model version one and utilized for capturing resource
    // variables. If the `saved_model_dir` directory path is provided, then the
    // `tf_saved_model.asset` ops will be freezed.
    void AddTFToTFLConversionPasses(llvm::StringRef saved_model_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 06:14:07 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/taskgraph/CalculateTaskGraphBuildOperationType.java

            /**
             * Lexicographically sorted.
             * Never null.
             * Never contains duplicates.
             */
            List<String> getExcludedTaskPaths();
    
            /**
             * Capturing task execution plan details.
             *
             * @since 6.2
             */
            List<PlannedTask> getTaskPlan();
    
            /**
             * Returns an execution plan consisting of nodes of the given types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/plugins/gcs/cleanup.h

    ==============================================================================*/
    
    // MakeCleanup(f) returns an RAII cleanup object that calls 'f' in its
    // destructor. The easiest way to use MakeCleanup is with a lambda argument,
    // capturing the return value in an 'auto' local variable. Most users will not
    // need more sophisticated syntax than that.
    //
    // Example:
    //   void func() {
    //     FILE* fp = fopen("data.txt", "r");
    //     if (fp == nullptr) return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 11:16:00 UTC 2020
    - 3.4K bytes
    - Viewed (0)
Back to top