Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,474 for tracks (0.18 sec)

  1. src/go/doc/comment/wrap_test.go

    func wrapSlow(words []string, max int) (seq []int, score int64) {
    	// Quadratic dynamic programming algorithm for line wrapping problem.
    	// best[i] tracks the best score possible for words[:i],
    	// assuming that for i < len(words) the line breaks after those words.
    	// bestleft[i] tracks the previous line break for best[i].
    	best := make([]int64, len(words)+1)
    	bestleft := make([]int, len(words)+1)
    	best[0] = 0
    	for i, w := range words {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileAccessTracker.java

     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    /**
     * Tracks access to files.
     */
    public interface FileAccessTracker {
        /**
         * Marks the supplied file as accessed.
         *
         * If the supplied file is unknown to this tracker, implementations must
         * simply ignore it instead of throwing an exception. However, depending
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/AbstractTrackedResourceLockTest.groovy

        def coordinationService = Mock(ResourceLockCoordinationService)
        def container = Mock(ResourceLockContainer)
        def lock = new TestTrackedResourceLock("test", coordinationService, container)
    
        def "tracks the lock in the current resource lock state and calls provided actions"() {
            given:
            _ * coordinationService.current >> resourceLockState
    
            when:
            lock.tryLock()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight.go

    	"k8s.io/klog/v2"
    )
    
    const (
    	// Constant for the retry-after interval on rate limiting.
    	retryAfter = "1"
    
    	// How often inflight usage metric should be updated. Because
    	// the metrics tracks maximal value over period making this
    	// longer will increase the metric value.
    	inflightUsageMetricUpdatePeriod = time.Second
    )
    
    var (
    	nonMutatingRequestVerbs = sets.NewString("get", "list", "watch")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 11:34:15 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KaLifetimeTracker.kt

    import com.intellij.openapi.project.Project
    import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
    import org.jetbrains.kotlin.analysis.api.platform.KaEngineService
    
    /**
     * [KaLifetimeTracker] is an *engine service* which tracks the current [KtLifetimeToken].
     *
     * It can be used in the implementation of custom lifetime tokens to check that the accessed token is in scope.
     */
    public interface KaLifetimeTracker : KaEngineService {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildOperationTracker.java

    import java.util.Collections;
    import java.util.List;
    
    /**
     * Tracks some state for build operations of a given type.
     */
    public interface BuildOperationTracker {
        /**
         * Returns the trackers that are used by this tracker. If this tracker is required, then its trackers should be notified of
         * build operation execution. If this tracker is not required, the trackers can be ignored.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ReportingTaskDependencyUsageTracker.kt

    import org.gradle.api.internal.tasks.TaskDependencyUsageTracker
    import org.gradle.internal.configuration.problems.ProblemFactory
    import org.gradle.internal.configuration.problems.ProblemsListener
    
    
    /** Reports all usages of the tracked TaskDependency APIs as problems using the [problems] listener.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/SingleDepthFileAccessTracker.java

    import com.google.common.base.Preconditions;
    import org.gradle.internal.file.FileAccessTimeJournal;
    import org.gradle.internal.file.FileAccessTracker;
    
    import java.io.File;
    import java.nio.file.Path;
    
    /**
     * Tracks access to files and directories at the supplied depth within the supplied base
     * directory by setting their last access time in the supplied {@link FileAccessTimeJournal}.
     */
    @SuppressWarnings("Since15")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/tracker/internal/PluginVersionTracker.java

    import java.util.Map;
    import java.util.concurrent.ConcurrentHashMap;
    
    import static java.util.Collections.emptyMap;
    
    /**
     * Tracks plugin versions available at different {@link org.gradle.api.internal.initialization.ClassLoaderScope scopes}.
     */
    @ServiceScope(Scope.Build.class)
    public class PluginVersionTracker {
    
        final Map<ClassLoaderScope, Map<String, String>> pluginVersionsPerScope = new ConcurrentHashMap<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/internal/trace/internal/testgen/go122/trace.go

    	// Write out the generator's state.
    	if _, err := out.Write(trace.Generate()); err != nil {
    		panic(err.Error())
    	}
    }
    
    // Trace represents an execution trace for testing.
    //
    // It does a little bit of work to ensure that the produced trace is valid,
    // just for convenience. It mainly tracks batches and batch sizes (so they're
    // trivially correct), tracks strings and stacks, and makes sure emitted string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top