Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for mage (0.07 sec)

  1. cluster/gce/upgrade.sh

    #   KUBELET_CERT_BASE64
    #   KUBELET_KEY_BASE64
    function upgrade-nodes() {
      prepare-node-upgrade
      do-node-upgrade
    }
    
    function setup-base-image() {
      if [[ "${env_os_distro}" == "false" ]]; then
        echo "== Ensuring that new Node base OS image matched the existing Node base OS image"
        NODE_OS_DISTRIBUTION=$(get-node-os "${NODE_NAMES[0]}")
    
        if [[ "${NODE_OS_DISTRIBUTION}" == "cos" ]]; then
            NODE_OS_DISTRIBUTION="gci"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime.go

    	}
    	return runningContainerStatuses
    }
    
    // Image contains basic information about a container image.
    type Image struct {
    	// ID of the image.
    	ID string
    	// Other names by which this image is known.
    	RepoTags []string
    	// Digests by which this image is known.
    	RepoDigests []string
    	// The size of the image in bytes.
    	Size int64
    	// ImageSpec for the image which include annotations.
    	Spec ImageSpec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types.go

    }
    
    // ImageStateSummary provides summarized information about the state of an image.
    type ImageStateSummary struct {
    	// Size of the image
    	Size int64
    	// Used to track how many nodes have this image, it is computed from the Nodes field below
    	// during the execution of Snapshot.
    	NumNodes int
    	// A set of node names for nodes having this image present. This field is used for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_test.go

    		analyzer: &deployment.ApplicationUIDAnalyzer{},
    		expected: []message{
    			{msg.InvalidApplicationUID, "Deployment deploy-con-sec-uid"},
    		},
    	},
    	{
    		name: "Detect `image: auto` in non-injected pods",
    		inputFiles: []string{
    			"testdata/image-auto.yaml",
    		},
    		analyzer: &injection.ImageAutoAnalyzer{},
    		expected: []message{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. samples/addons/prometheus.yaml

            
            sidecar.istio.io/inject: "false"
        spec:
          enableServiceLinks: true
          serviceAccountName: prometheus
          containers:
            - name: prometheus-server-configmap-reload
              image: "ghcr.io/prometheus-operator/prometheus-config-reloader:v0.73.2"
              imagePullPolicy: "IfNotPresent"
              args:
                - --watched-dir=/etc/config
                - --reload-url=http://127.0.0.1:9090/-/reload
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    	// Holds clusters per service, keyed by hostname.
    	serviceClusters := make(map[string]sets.String)
    	// Holds service ports, keyed by hostname.Inner map port and its cluster name.
    	// This is mainly used when service is updated and a port has been removed.
    	servicePortClusters := make(map[string]map[int]string)
    	// Holds subset clusters per service, keyed by hostname.
    	subsetClusters := make(map[string]sets.String)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/unify.go

    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    	if asNamed(x) != nil || u.asBoundTypeParam(y) != nil {
    		if traceInference {
    			u.tracef("%s ≡ %s\t// swap", y, x)
    		}
    		x, y = y, x
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

        }
    
        public NodeState pop() {
            NodeState next = queue.removeFirst();
            return next.dequeue();
        }
    
        /**
         * Called when a change is made to a configuration node, such that its dependency graph may now be larger than it previously was, and the node should be visited.
         */
        public void onMoreSelected(NodeState node) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. Makefile

    docker-hotfix: hotfix-push checks ## builds minio docker container with hotfix tags
    	@echo "Building minio docker image '$(TAG)'"
    	@docker build -q --no-cache -t $(TAG) --build-arg RELEASE=$(VERSION) . -f Dockerfile.hotfix
    
    docker: build ## builds minio docker container
    	@echo "Building minio docker image '$(TAG)'"
    	@docker build -q --no-cache -t $(TAG) . -f Dockerfile
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/time/tick_test.go

    	}
    
    	tim.Stop()
    	drainAsync()
    	noTick()
    
    	// Again using select and with two goroutines waiting.
    	tim.Reset(10000 * Second)
    	drainAsync()
    	done = make(chan bool, 2)
    	done1 := make(chan bool)
    	done2 := make(chan bool)
    	stop := make(chan bool)
    	go func() {
    		select {
    		case <-C:
    			done <- true
    		case <-stop:
    		}
    		close(done1)
    	}()
    	go func() {
    		select {
    		case <-C:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top