Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,650 for tracking (0.49 sec)

  1. src/net/http/export_test.go

    func (t *Transport) PutIdleTestConn(scheme, addr string) bool {
    	c, _ := net.Pipe()
    	key := connectMethodKey{"", scheme, addr, false}
    
    	if t.MaxConnsPerHost > 0 {
    		// Transport is tracking conns-per-host.
    		// Increment connection count to account
    		// for new persistConn created below.
    		t.connsPerHostMu.Lock()
    		if t.connsPerHost == nil {
    			t.connsPerHost = make(map[connectMethodKey]int)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/gover/mod.go

    package gover
    
    import (
    	"sort"
    	"strings"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/semver"
    )
    
    // IsToolchain reports whether the module path corresponds to the
    // virtual, non-downloadable module tracking go or toolchain directives in the go.mod file.
    //
    // Note that IsToolchain only matches "go" and "toolchain", not the
    // real, downloadable module "golang.org/toolchain" containing toolchain files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/ExecHandleRunner.java

                    execHandle.failed(t);
                });
            }
        }
    
        /**
         * Remove any context associated with tracking the startup of this process.
         */
        public void removeStartupContext() {
            this.associatedBuildOperation = null;
            streamsHandler.removeStartupContext();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

    import org.gradle.internal.snapshot.EmptyChildMap;
    import org.gradle.internal.snapshot.VfsRelativePath;
    
    import javax.annotation.CheckReturnValue;
    
    /**
     * Node in a structure for tracking modifications in a hierarchy.
     *
     * Allows doing optimistic locking to check whether anything in a hierarchy changed.
     */
    public class VersionHierarchy {
        private final long version;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/CacheLayout.java

    import javax.annotation.Nullable;
    import java.io.File;
    
    import static org.gradle.cache.internal.CacheVersionMapping.introducedIn;
    
    /**
     * Versioned locations of global caches.
     *
     * The purpose of tracking previous versions is to help with cache cleanup.
     * E.g. when the layout was changed in {@code version1}, and it gets changed
     * in {@code version2} once again, we can delete the {@code version1} cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:09:31 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

     * <p>
     * Works in conjunction with {@link UserCodeApplicationContext} to attach the current user code application ID
     * to the listener, in order to convey it as part of the operation details.
     * This allows tracking the listener back to the plugin or script that <i>registered</i> it.
     */
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface ListenerBuildOperationDecorator {
    
        /**
         * Decorates an action listener.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. pkg/test/framework/features/README.md

    ```go
      func TestExample(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         *
         * @return {@code true} if location tracking is enabled, {@code false} otherwise.
         */
        boolean isLocationTracking();
    
        /**
         * Enables/disables the tracking of line/column numbers for the model source being parsed. By default, input
         * locations are not tracked.
         *
         * @param locationTracking {@code true} to enable location tracking, {@code false} to disable it.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyErrorIntegrationTest.groovy

                    "Declare the task as untracked by using Task.doNotTrackState(). " +
                    new DocumentationRegistry().getDocumentationRecommendationFor("information", "incremental_build", "sec:disable-state-tracking")
                )
                failure.assertHasCause("java.nio.file.AccessDeniedException: ${dir}")
            } finally {
                dir.permissions = oldPermissions
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:48:19 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

    import java.util.Properties
    import javax.xml.parsers.DocumentBuilderFactory
    
    
    /**
     * Fetch the latest AGP versions and write a properties file.
     * Never up-to-date, non-cacheable.
     */
    @UntrackedTask(because = "Not worth tracking")
    abstract class UpdateAgpVersions : DefaultTask() {
    
        @get:Internal
        abstract val comment: Property<String>
    
        @get:Internal
        abstract val minimumSupportedMinor: Property<String>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 09:17:07 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top