Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,650 for tracking (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/managedfieldstest/testfieldmanager.go

    	"k8s.io/apimachinery/pkg/util/managedfields/internal/testing"
    )
    
    // TestFieldManager is a FieldManager that can be used in test to
    // simulate the behavior of Server-Side Apply and field tracking. This
    // also has a few methods to get a sense of the state of the object.
    //
    // This TestFieldManager uses a series of "fake" objects to simulate
    // some behavior which come with the limitation that you can only use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            val jvm: String,
            val startParameterProperties: Map<String, Any?>,
            /**
             * Whether the undeclared inputs accessed while serializing the task graph will be
             * excluded from input tracking. This is a temporary opt-out flag after a change
             * was made in that behavior.
             */
            val ignoreInputsInConfigurationCacheTaskGraphWriting: Boolean,
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                        dir, event.getSession().getLocalRepositoryManager().getPathForLocalArtifact(event.getArtifact()));
                trackingDir = dir.getParentFile().toPath().resolve(".tracking");
            } else {
                trackingDir = event.getFile().getParentFile().toPath().resolve(".tracking");
            }
    
            String baseName;
            String ext = missing ? ".miss" : ".dep";
            Path trackingFile = null;
    
            String indent = "";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. testing/performance/docs/performance-bisect.md

    <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
    **Table of Contents**  *generated with [DocToc](https://github.com/thlorenz/doctoc)*
    
    - [Tracking down performance regressions with `git bisect`](#tracking-down-performance-regressions-with-git-bisect)
      - [Identify the test which caused the regression](#identify-the-test-which-caused-the-regression)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/enhancement.yaml

    name: Enhancement Tracking Issue
    description: Provide supporting details for a feature in development
    labels: kind/feature
    body:
      - type: textarea
        id: feature
        attributes:
          label: What would you like to be added?
          description: |
            Feature requests are unlikely to make progress as issues. Please consider engaging with SIGs on slack and mailing lists, instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 750 bytes
    - Viewed (0)
  6. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/InstrumentedInputs.java

     * limitations under the License.
     */
    
    package org.gradle.internal.configuration.inputs;
    
    import java.util.concurrent.atomic.AtomicReference;
    
    /**
     * Main entry point to the input tracking.
     */
    public class InstrumentedInputs {
        private static final AtomicReference<InstrumentedInputsListener> LISTENER = new AtomicReference<>(NoOpInputsListener.INSTANCE);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/ConfigurableNormalizer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint.hashing;
    
    import org.gradle.internal.hash.Hasher;
    
    /**
     * A resource normalizer which is configurable.
     *
     * Allows tracking changes to its configuration.
     */
    public interface ConfigurableNormalizer {
        void appendConfigurationToHasher(Hasher hasher);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 913 bytes
    - Viewed (0)
  8. maven-core/src/test/projects/project-builder/MNG-7648/pom.xml

        <modelVersion>4.0.0</modelVersion>
    
        <parent>
            <groupId>org.apache.maven.its</groupId>
            <artifactId>parent</artifactId>
            <version>0.1</version>
        </parent>
    
        <artifactId>location-tracking</artifactId>
        <packaging>jar</packaging>
    
        <repositories>
            <repository>
                <id>remote-repo</id>
                <url>file://${basedir}/../../src/test/remote-repo</url>
            </repository>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 29 13:02:33 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanableStore.java

    public interface CleanableStore {
    
        /**
         * Returns the base directory that should be cleaned for this store.
         */
        File getBaseDir();
    
        /**
         * Returns the files used by this store for internal tracking
         * which should be exempt from the cleanup.
         */
        Collection<File> getReservedCacheFiles();
    
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelReader.java

         */
        String IS_STRICT = "org.apache.maven.model.io.isStrict";
    
        /**
         * The key for the option to enable tracking of line/column numbers. This option is of type
         * {@link org.apache.maven.model.InputSource} and defaults to {@code null}. Providing an input source enables
         * location tracking.
         */
        String INPUT_SOURCE = "org.apache.maven.model.io.inputSource";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top