Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for Pull (0.12 sec)

  1. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public void Xpp3DomBuilder(); public static Xpp3Dom build(java.io.Reader) throws pull.XmlPullParserExcepti, java.io.IOException; public static Xpp3Dom build(java.io.InputStream, String) throws pull.XmlPullParserExcepti, java.io.IOException; public static Xpp3Dom build(java.io.InputStream, String, boolean) throws pull.XmlPullParserExcepti, java.io.IOException; public static Xpp3Dom build(java.io.Reader, boolean) throws pull.XmlPullParserExcepti, java.io.IOException; public static Xpp3Dom build(pull.XmlPullParser)...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    			// Ignore to avoid unnecessary warnings.
    			continue
    		}
    		secret, err := kl.secretManager.GetSecret(pod.Namespace, secretRef.Name)
    		if err != nil {
    			klog.InfoS("Unable to retrieve pull secret, the image pull may not succeed.", "pod", klog.KObj(pod), "secret", klog.KObj(secret), "err", err)
    			failedPullSecrets = append(failedPullSecrets, secretRef.Name)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    		configMap                                  *v1.ConfigMap          // an optional ConfigMap to pull from
    		secret                                     *v1.Secret             // an optional Secret to pull from
    		podIPs                                     []string               // the pod IPs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        mkdir -p "${dst_dir}"
      fi
      if [[ -n "$(ls "${src_dir}"/*.yaml 2>/dev/null)" ]]; then
        cp "${src_dir}/"*.yaml "${dst_dir}"
      fi
      if [[ -n "$(ls "${src_dir}"/*.json 2>/dev/null)" ]]; then
        cp "${src_dir}/"*.json "${dst_dir}"
      fi
      if [[ -n "$(ls "${src_dir}"/*.yaml.in 2>/dev/null)" ]]; then
        cp "${src_dir}/"*.yaml.in "${dst_dir}"
      fi
      chown -R root:root "${dst_dir}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				testutil.CreateZoneID("region1", "zone1"): stateNormal,
    			},
    			expectedFollowingStates: map[string]ZoneState{
    				testutil.CreateZoneID("region1", "zone1"): statePartialDisruption,
    			},
    		},
    		"Full Disruption: the zone has less than 2 Nodes down, the last healthy Node has failed": {
    			nodeList: []*v1.Node{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:              "node0",
    						CreationTimestamp: fakeNow,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	// and components that need to check whether a pod is still running should instead directly
    	// consult the pod worker.
    	statusManager status.Manager
    
    	// resyncInterval is the interval between periodic full reconciliations of
    	// pods on this node.
    	resyncInterval time.Duration
    
    	// sourcesReady records the sources seen by the kubelet, it is thread-safe.
    	sourcesReady config.SourcesReady
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      # http://issue.k8s.io/3168
      KUBE_PROXY_TOKEN=$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=32 count=1 2>/dev/null)
      if [[ "${ENABLE_NODE_PROBLEM_DETECTOR:-}" == "standalone" ]]; then
        NODE_PROBLEM_DETECTOR_TOKEN=$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=32 count=1 2>/dev/null)
      fi
    
      # Reserve the master's IP so that it can later be transferred to another VM
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    			if o == nil {
    				v = appendErrorf(v, "tagOverrides may not be null")
    				continue
    			}
    			for tagName, to := range o.TagOverrides {
    				if tagName == "" {
    					v = AppendWarningf(v, "tagOverrides.name may not be empty")
    				}
    				if to == nil {
    					v = appendErrorf(v, "tagOverrides may not be null")
    					continue
    				}
    				switch to.Operation {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    		}
    		expectSyncDaemonSets(t, manager, ds, podControl, 1, 0, 0)
    	}
    }
    
    // DaemonSetController should not sync DaemonSets with empty pod selectors.
    //
    // issue https://github.com/kubernetes/kubernetes/pull/23223
    func TestPodIsNotDeletedByDaemonsetWithEmptyLabelSelector(t *testing.T) {
    	// Create a misconfigured DaemonSet. An empty pod selector is invalid but could happen
    	// if we upgrade and make a backwards incompatible change.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "path": {
              "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
              "type": "string"
            },
            "readOnly": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top