Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 158 for recreate (0.17 sec)

  1. src/cmd/go/testdata/script/mod_tidy_sum.txt

    go mod tidy
    grep 'rsc.io/quote v1.0.0' go.sum
    ! grep 'rsc.io/quote v1.5.2' go.sum
    ! grep rsc.io/sampler go.sum
    
    # go.sum with no entries is OK to keep
    # (better for version control not to delete and recreate.)
    cp x.go.noimports x.go
    go mod tidy
    exists go.sum
    ! grep . go.sum
    
    -- go.mod --
    module x
    -- x.go --
    package x
    import _ "rsc.io/quote"
    -- x.go.noimports --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 742 bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/model/NamedObjectInstantiatorTest.groovy

            n1.toString() == "a"
            n2.toString() == "b"
    
            n1.is(factory.named(Named, "a"))
            n2.is(factory.named(Named, "b"))
        }
    
        def "can unpack and recreate Named instance"() {
            expect:
            def n1 = factory.named(Named, "a")
            n1 instanceof Managed
            n1.publicType() == Named
            n1.isImmutable()
            def state = n1.unpackState()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCache.java

     */
    @ThreadSafe
    public interface CrossBuildInMemoryCache<K, V> extends Cache<K, V> {
        /**
         * Locates the given entry, using the supplied factory when the entry is not present or has been discarded, to recreate the entry in the cache.
         *
         * <p>Implementations must prevent more than one thread calculating the same key at the same time.
         */
        @Override
        V get(K key, Function<? super K, ? extends V> factory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskContainerInternal.java

         */
        boolean addAllInternal(Collection<? extends Task> task);
    
        /**
         * Creates an instance of the given task type without invoking its constructors. This is used to recreate a task instance from the configuration cache.
         *
         * TODO:configuration-cache - review this
         */
        <T extends Task> T createWithoutConstructor(String name, Class<T> type, long uniqueId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 08 09:35:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ValueSnapshot.java

    import org.gradle.internal.hash.Hashable;
    
    import javax.annotation.Nullable;
    
    /**
     * An immutable snapshot of the state of some Java object or object graph.
     *
     * <p>Implementations are not required to be able to recreate the object, and should retain as little state as possible.
     * In particular, implementations should not hold on to user ClassLoaders.</p>
     */
    public interface ValueSnapshot extends Hashable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/Cache.java

    import java.util.function.Function;
    import java.util.function.Supplier;
    
    public interface Cache<K, V>  {
        /**
         * Locates the given entry, using the supplied factory when the entry is not present or has been discarded, to recreate the entry in the cache.
         *
         * <p>Implementations may prevent more than one thread calculating the same key at the same time or not.
         */
        V get(K key, Function<? super K, ? extends V> factory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/Managed.java

     */
    public interface Managed {
        /**
         * Returns a snapshot of the current state of this object. This can be passed to the {@link ManagedFactory#fromState(Class, Object)} method to recreate this object from the snapshot.
         * Note that the state may not be immutable, so should be made isolated to reuse in another context. The state can also be fingerprinted to generate a fingerprint of this object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

            It does not affect the behaviour of proxy.golang.org or the go command.
            Instead we recommend using the retract directive which will be processed by all 3 of the above.
    
            If you have deleted your repo, please recreate it and publish a retraction.
    
            Retracting a module version involves adding a retract directive to your go.mod file and publishing a new version.
            For example: https://github.com/jba/retract-demo/blob/main/go.mod#L5-L8.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. samples/ratelimit/rate-limit-service.yaml

        app: ratelimit
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ratelimit
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratelimit
      strategy:
        type: Recreate
      template:
        metadata:
          labels:
            app: ratelimit
        spec:
          containers:
          - image: envoyproxy/ratelimit:9d8d70a8 # 2022/08/16
            imagePullPolicy: IfNotPresent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_test.go

    	socketDir := initTempDir(t)
    	defer os.RemoveAll(socketDir)
    
    	dsw := cache.NewDesiredStateOfWorld()
    	newWatcher(t, socketDir, dsw, wait.NeverStop)
    
    	// Create a plugin first, we are then going to remove the plugin, update the plugin with a different name
    	// and recreate it.
    	socketPath := filepath.Join(socketDir, "plugin-reregistration.sock")
    	pluginName := "reregister-plugin"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top