Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 242 for existed (0.38 sec)

  1. pkg/kubelet/pleg/pleg.go

    	ContainerStarted PodLifeCycleEventType = "ContainerStarted"
    	// ContainerDied - event type when the new state of container is exited.
    	ContainerDied PodLifeCycleEventType = "ContainerDied"
    	// ContainerRemoved - event type when the old state of container is exited.
    	ContainerRemoved PodLifeCycleEventType = "ContainerRemoved"
    	// PodSync is used to trigger syncing of a pod when the observed change of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/BasicCallInterceptionTestInterceptorsDeclaration.java

            self.intercepted = "getNonExistentProperty()-non-existent";
            return "nonExistent";
        }
    
        @InterceptGroovyCalls
        @CallableKind.GroovyPropertySetter
        public static void intercept_nonExistentProperty(
            @ParameterKind.Receiver InterceptorTestReceiver self,
            String value
        ) {
            self.intercepted = "setNonExistentProperty(String)-non-existent";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 08:15:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. docs/fr/docs/external-links.md

    # Articles et liens externes
    
    **FastAPI** possède une grande communauté en constante extension.
    
    Il existe de nombreux articles, outils et projets liés à **FastAPI**.
    
    Voici une liste incomplète de certains d'entre eux.
    
    !!! tip "Astuce"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. pkg/apis/policy/types.go

    	// but not yet healthy can be evicted only if the guarded application is not
    	// disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// AlwaysAllow policy means that all running pods (status.phase="Running"),
    	// but not yet healthy are considered disrupted and can be evicted regardless
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java

         * path if the project directory is given as an absolute path.
         *
         * @param projectDirectory The (possibly non-existent) base directory to locate the POM file in, must not be {@code
         *            null}.
         * @return The path to the (possibly non-existent) POM file, never {@code null}.
         * @since 4.0.0
         */
        Path locatePom(Path projectDirectory);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    
    ## Emitting a problem
    
    Problems can be emitted via an injected `Problems` service.
    Here's an example on how to report a problem from a plugin.
    
    ====
    include::sample[dir="groovy",files="reporters/standard-plugin/src/main/java/reporters/StandardPlugin.java[tags=problems-api-report]"]
    ====
    
    
    ## Receiving a problem report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. pkg/envoy/agent.go

    		if status.err != nil {
    			if status.err.Error() == errOutOfMemory {
    				log.Warnf("Envoy may have been out of memory killed. Check memory usage and limits.")
    			}
    			log.Errorf("Envoy exited with error: %v", status.err)
    		} else {
    			log.Infof("Envoy exited normally")
    		}
    
    	case <-ctx.Done():
    		a.terminate()
    		log.Info("Agent has successfully terminated")
    	}
    }
    
    func (a *Agent) DisableDraining() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/skipnonapplied_test.go

    		t.Fatalf("exected %v entries in managedFields, but got %v: %#v", e, a, f.ManagedFields())
    	}
    
    	if e, a := "fieldmanager_test_apply", f.ManagedFields()[0].Manager; e != a {
    		t.Fatalf("exected first manager name to be %v, but got %v: %#v", e, a, f.ManagedFields())
    	}
    
    	if e, a := "before-first-apply", f.ManagedFields()[1].Manager; e != a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. docs/es/docs/python-types.md

    {!../../../docs_src/python_types/tutorial005.py!}
    ```
    
    ### Tipos con sub-tipos
    
    Existen algunas estructuras de datos que pueden contener otros valores, como `dict`, `list`, `set` y `tuple`. Los valores internos pueden tener su propio tipo también.
    
    Para declarar esos tipos y sub-tipos puedes usar el módulo estándar de Python `typing`.
    
    Él existe específicamente para dar soporte a este tipo de type hints.
    
    #### Listas
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_container_deletor.go

    			}
    		}
    	}, 0, wait.NeverStop)
    
    	return &podContainerDeletor{
    		worker:           buffer,
    		containersToKeep: containersToKeep,
    	}
    }
    
    // getContainersToDeleteInPod returns the exited containers in a pod whose name matches the name inferred from filterContainerId (if not empty), ordered by the creation time from the latest to the earliest.
    // If filterContainerID is empty, all dead containers in the pod are returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top