Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 125 for persistent (0.28 sec)

  1. cluster/gce/gci/configure-helper.sh

        return
      fi
      device_info=$(ls -l /dev/disk/by-id/google-master-pd)
      relative_path=${device_info##* }
      MASTER_PD_DEVICE="/dev/disk/by-id/${relative_path}"
    }
    
    # Mounts a persistent disk (formatting if needed) to store the persistent data
    # on the master -- etcd's data, a few settings, and security certs/keys/tokens.
    # safe-format-and-mount only formats an unformatted disk, and mkdir -p will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apps__v1_openapi.json

                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  3. pkg/volume/local/local.go

    	if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.Local != nil {
    		// local volumes used as a PersistentVolume gets the ReadOnly flag indirectly through
    		// the persistent-claim volume used to mount the PV
    		return spec.ReadOnly, nil
    	}
    
    	return false, fmt.Errorf("spec does not reference a Local volume type")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_waypoint.go

    			Filters: append([]*listener.Filter{
    				xdsfilters.ConnectAuthorityNetworkFilter,
    			},
    				lb.buildInboundNetworkFilters(cc)...),
    			Name: "direct-tcp",
    		}
    		// TODO: maintains undesirable persistent HTTP connections to "encap"
    		httpChain := &listener.FilterChain{
    			Filters: append([]*listener.Filter{
    				xdsfilters.ConnectAuthorityNetworkFilter,
    			},
    				lb.buildWaypointInboundHTTPFilters(nil, cc)...),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/api__v1_openapi.json

                  }
                ],
                "default": {},
                "description": "spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes"
              },
              "status": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  6. src/archive/tar/writer.go

    	curr fileWriter // Writer for current file entry
    	hdr  Header     // Shallow copy of Header that is safe for mutations
    	blk  block      // Buffer to use as temporary local storage
    
    	// err is a persistent error.
    	// It is only the responsibility of every exported method of Writer to
    	// ensure that this error is sticky.
    	err error
    }
    
    // NewWriter creates a new Writer writing to w.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    }
    
    func (t *Transport) maxIdleConnsPerHost() int {
    	if v := t.MaxIdleConnsPerHost; v != 0 {
    		return v
    	}
    	return DefaultMaxIdleConnsPerHost
    }
    
    // tryPutIdleConn adds pconn to the list of idle persistent connections awaiting
    // a new request.
    // If pconn is no longer needed or not in a good state, tryPutIdleConn returns
    // an error explaining why it wasn't registered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    		}
    		var onHeartbeatFailure func()
    		// Kubelet needs to be able to recover from stale http connections.
    		// HTTP2 has a mechanism to detect broken connections by sending periodical pings.
    		// HTTP1 only can have one persistent connection, and it will close all Idle connections
    		// once the Kubelet heartbeat fails. However, since there are many edge cases that we can't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "photonPersistentDisk": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top