Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 254 for unmounted (0.25 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // A volume that is both attached and mounted on a node is considered to be used once, not twice.
      // The same rule applies for a unique volume that is shared among multiple pods on the same node.
      // If this field is nil, then the supported number of volumes on this node is unbounded.
      // +optional
      optional int32 count = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  2. cni/pkg/repair/netns.go

    // it might be.
    //
    // Instead, we rely directly on the procfs.
    // This rules out two possible methods:
    // * use crictl to inspect the pod; this returns the bind-mounted network namespace file.
    // * /var/lib/cni/results shows the outputs of CNI plugins; this containers the bind-mounted network namespace file.
    //
    // Instead, we traverse the procfs. Comments on this method are inline.
    func getPodNetNs(pod *corev1.Pod) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/conntrack.go

    	if err != nil {
    		return err
    	}
    	if hashsize >= (max / 4) {
    		return nil
    	}
    
    	// sysfs is expected to be mounted as 'rw'. However, it may be
    	// unexpectedly mounted as 'ro' by docker because of a known docker
    	// issue (https://github.com/docker/docker/issues/24000). Setting
    	// conntrack will fail when sysfs is readonly. When that happens, we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // A volume that is both attached and mounted on a node is considered to be used once, not twice.
      // The same rule applies for a unique volume that is shared among multiple pods on the same node.
      // If this field is nil, then the supported number of volumes on this node is unbounded.
      // +optional
      optional int32 count = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. pkg/volume/git_repo/git_repo.go

    		target:   spec.Volume.GitRepo.Directory,
    		exec:     exec.New(),
    		opts:     opts,
    	}, nil
    }
    
    func (plugin *gitRepoPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return &gitRepoVolumeUnmounter{
    		&gitRepoVolume{
    			volName: volName,
    			podUID:  podUID,
    			plugin:  plugin,
    		},
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. tests/integration/security/file_mounted_certs/main_test.go

          # Turning the XDS-Auth ON will result in the error messages like:
          # Unauthorized XDS: 10.1.0.159:41960 with identity [spiffe://cluster.local/ns/mounted-certs/sa/client client.mounted-certs.svc]:
          #    no identities ([spiffe://cluster.local/ns/mounted-certs/sa/client client.mounted-certs.svc]) matched istio-fd-sds-1-4523/default
          XDS_AUTH: "false"
    `
    
    	cfg.EastWestGatewayValues = `
    components:
      ingressGateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1/generated.proto

      // A volume that is both attached and mounted on a node is considered to be used once, not twice.
      // The same rule applies for a unique volume that is shared among multiple pods on the same node.
      // If this field is not specified, then the supported number of volumes on this node is unbounded.
      // +optional
      optional int32 count = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Cut.java

      @CheckForNull
      abstract C greatestValueBelow(DiscreteDomain<C> domain);
    
      /*
       * The canonical form is a BelowValue cut whenever possible, otherwise ABOVE_ALL, or
       * (only in the case of types that are unbounded below) BELOW_ALL.
       */
      Cut<C> canonical(DiscreteDomain<C> domain) {
        return this;
      }
    
      // note: overridden by {BELOW,ABOVE}_ALL
      @Override
      public int compareTo(Cut<C> that) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Range.java

       * canonical forms:
       *
       * <ul>
       *   <li>[start..end)
       *   <li>[start..+∞)
       *   <li>(-∞..end) (only if type {@code C} is unbounded below)
       *   <li>(-∞..+∞) (only if type {@code C} is unbounded below)
       * </ul>
       */
      public Range<C> canonical(DiscreteDomain<C> domain) {
        checkNotNull(domain);
        Cut<C> lower = lowerBound.canonical(domain);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Range.java

       * canonical forms:
       *
       * <ul>
       *   <li>[start..end)
       *   <li>[start..+∞)
       *   <li>(-∞..end) (only if type {@code C} is unbounded below)
       *   <li>(-∞..+∞) (only if type {@code C} is unbounded below)
       * </ul>
       */
      public Range<C> canonical(DiscreteDomain<C> domain) {
        checkNotNull(domain);
        Cut<C> lower = lowerBound.canonical(domain);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top