Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 352 for recreate (0.81 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/AttributeContainerCodecs.kt

        val factoryId = readSmallInt()
        val type = readClass()
        val state = read()
        return managedFactories.lookup(factoryId).fromState(type, state).let {
            require(it != null) {
                "Failed to recreate managed value of type $type from state $state"
            }
            it
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginAdapter.java

    import org.gradle.internal.operations.notify.BuildOperationNotificationListenerRegistrar;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Captures the state to recreate the {@link GradleEnterprisePluginService} instance.
     * <p>
     * The adapter is created on check-in in {@link DefaultGradleEnterprisePluginCheckInService} via {@link DefaultGradleEnterprisePluginAdapterFactory}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

         *
         * @return this
         */
        ClassLoaderScope lock();
    
        boolean isLocked();
    
        /**
         * Notifies this scope that it is about to be reused in a new build invocation, so that the scope can recreate or otherwise prepare its classloaders for this, as certain state may have
         * been discarded to reduce memory pressure.
         */
        void onReuse();
    
        ClassLoaderScope getOriginalScope();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. pkg/controller/deployment/deployment_controller.go

    limitations under the License.
    */
    
    // Package deployment contains all the logic for handling Kubernetes Deployments.
    // It implements a set of strategies (rolling, recreate) for deploying an application,
    // the means to rollback to previous versions, proportional scaling for mitigating
    // risk, cleanup policy, and other useful features of Deployments.
    package deployment
    
    import (
    	"context"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. hack/verify-vendor.sh

    mkdir -p "${_kubetmp}"
    tar --exclude=.git --exclude="./_*" -c . | (cd "${_kubetmp}" && tar xf -)
    
    pushd "${_kubetmp}" > /dev/null 2>&1
      # Destroy deps in the copy of the kube tree
      rm -rf ./vendor ./LICENSES
    
      # Recreate the vendor tree using the nice clean set we just downloaded
      hack/update-vendor.sh
    popd > /dev/null 2>&1
    
    ret=0
    
    pushd "${KUBE_ROOT}" > /dev/null 2>&1
      # Test for diffs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    						// as we create them only after acquiring the leader lock
    						// Note: stop here should be the overall pilot stop, NOT the leader election stop. We are
    						// basically lazy loading the informer, if we stop it when we lose the lock we will never
    						// recreate it again.
    						client.RunAndWait(clusterStopCh)
    						nc.Run(leaderStop)
    					})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

                    generateTypeSafeAccessorsFor(projectScriptPlugins)
                }
            }
        }
    
        private
        fun recreateTaskDirectories() {
            recreate(temporaryDir)
            recreate(sourceCodeOutputDir.get().asFile)
            recreate(metadataOutputDir.get().asFile)
        }
    
        private
        fun IO.generateTypeSafeAccessorsFor(projectScriptPlugins: List<PrecompiledScriptPlugin>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    }
    
    // sandboxTemplate is a sandbox template to create fake sandbox.
    type sandboxTemplate struct {
    	pod         *v1.Pod
    	attempt     uint32
    	createdAt   int64
    	state       runtimeapi.PodSandboxState
    	running     bool
    	terminating bool
    }
    
    // containerTemplate is a container template to create fake container.
    type containerTemplate struct {
    	pod            *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top