Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 892 for wealth (0.18 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "toys",
            "plant",
            "trail",
            "wing",
            "ring",
            "desk",
            "yak",
            "teaching",
            "street",
            "cattle",
            "sun",
            "wealth",
            "cabbage",
            "playground",
            "wren",
            "flowers",
            "cobweb",
            "shame",
            "plate",
            "authority",
            "cave",
            "floor",
            "shelf",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            def operand15 = moduleId('yak', 'teaching')
            def operand16 = moduleId('street', 'cattle')
            def operand17 = group('sun')
            def operand18 = moduleId('crib', 'wealth')
            def operand19 = moduleId('cabbage', 'playground')
            def operand20 = moduleId('wren', 'flowers')
            def operand21 = moduleId('insurance', 'cobweb')
            def operand22 = moduleId('crib', 'shame')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[dependency_management_terminology]]
    = Dependency Management Terminology
    
    Dependency management comes with a wealth of terminology.
    Here you can find the most commonly-used terms including references to the user guide to learn about their practical application.
    
    [[sub:terminology_artifact]]
    == Artifact
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    	// we opt for a delay of zero here, because this entrypoint adds generic health checks
    	// and not health checks which are specifically related to kube-apiserver boot-sequences.
    	return s.addHealthChecks(0, checks...)
    }
    
    // AddBootSequenceHealthChecks adds health checks to the old healthz endpoint (for backwards compatibility reasons)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    			}
    		}
    		if excluded.Len() > 0 {
    			fmt.Fprintf(&individualCheckOutput, "warn: some health checks cannot be excluded: no matches for %s\n", formatQuoted(excluded.List()...))
    			klog.V(6).Infof("cannot exclude some health checks, no health checks are installed matching %s",
    				formatQuoted(excluded.List()...))
    		}
    		// always be verbose on failure
    		if len(failedChecks) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. cluster/gce/gci/health-monitor.sh

    if [[ "$#" -ne 1 ]]; then
      echo "Usage: health-monitor.sh <container-runtime/kubelet>"
      exit 1
    fi
    
    KUBE_HOME="/home/kubernetes"
    KUBE_ENV="${KUBE_HOME}/kube-env"
    if [[ ! -e "${KUBE_ENV}" ]]; then
      echo "The ${KUBE_ENV} file does not exist!! Terminate health monitoring"
      exit 1
    fi
    
    SLEEP_SECONDS=10
    component=$1
    echo "Start kubernetes health monitoring for ${component}"
    source "${KUBE_ENV}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 09:19:08 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

     4. Work out what plugins to use for each project.
    +
    We expect that the vast majority of Ant builds are for <<building_java_projects#building_java_projects,JVM-based projects>>, for which there are a wealth of plugins that provide a lot of the functionality you need.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/health.go

    func CheckClusterHealth(client clientset.Interface, cfg *kubeadmapi.ClusterConfiguration, ignoreChecksErrors sets.Set[string], printer output.Printer) error {
    	_, _ = printer.Println("[upgrade] Running cluster health checks")
    
    	healthChecks := []preflight.Checker{
    		&healthCheck{
    			name:   "CreateJob",
    			client: client,
    			cfg:    cfg,
    			f:      createJob,
    		},
    		&healthCheck{
    			name:   "ControlPlaneNodesReady",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/k8sleaderelection/healthzadaptor.go

    import (
    	"net/http"
    	"sync"
    	"time"
    )
    
    // HealthzAdaptor associates the /healthz endpoint with the LeaderElection object.
    // It helps deal with the /healthz endpoint being set up prior to the LeaderElection.
    // This contains the code needed to act as an adaptor between the leader
    // election code the health check code. It allows us to provide health
    // status about the leader election. Most specifically about if the leader
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. pkg/proxy/healthcheck/proxier_health.go

    )
    
    // ProxierHealthServer allows callers to:
    //  1. run a http server with /healthz and /livez endpoint handlers.
    //  2. update healthz timestamps before and after synchronizing dataplane.
    //  3. sync node status, for reporting unhealthy /healthz response
    //     if the node is marked for deletion by autoscaler.
    //  4. get proxy health by verifying that the delay between QueuedUpdate()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top