Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 104 for farm (0.04 sec)

  1. cmd/api-errors.go

    		HTTPStatusCode: http.StatusRequestedRangeNotSatisfiable,
    	},
    	ErrInvalidPolicyDocument: {
    		Code:           "InvalidPolicyDocument",
    		Description:    "The content of the form does not meet the conditions specified in the policy document.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAccessDenied: {
    		Code:           "AccessDenied",
    		Description:    "Access Denied.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  2. src/crypto/tls/tls.go

    }
    
    // LoadX509KeyPair reads and parses a public/private key pair from a pair of
    // files. The files must contain PEM encoded data. The certificate file may
    // contain intermediate certificates following the leaf certificate to form a
    // certificate chain. On successful return, Certificate.Leaf will be populated.
    //
    // Before Go 1.23 Certificate.Leaf was left nil, and the parsed certificate was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. pkg/kubelet/container/runtime.go

    	ID ContainerID
    	// The name of the container, which should be the same as specified by
    	// v1.Container.
    	Name string
    	// The image name of the container, this also includes the tag of the image,
    	// the expected form is "NAME:TAG".
    	Image string
    	// The id of the image used by the container.
    	ImageID string
    	// The digested reference of the image used by the container.
    	ImageRef string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. cmd/iam-etcd-store.go

    		users.Add(user)
    	}
    	return users
    }
    
    // Extract path string by stripping off the `prefix` value and the suffix,
    // value, usually in the following form.
    //
    //	s := "config/iam/users/foo/config.json"
    //	prefix := "config/iam/users/"
    //	suffix := "config.json"
    //	result is foo
    func extractPathPrefixAndSuffix(s string, prefix string, suffix string) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      string network = 4;
    
      // Protocol that should be used to connect to this workload.
      TunnelProtocol tunnel_protocol = 5;
    
      // The SPIFFE identity of the workload. The identity is joined to form spiffe://<trust_domain>/ns/<namespace>/sa/<service_account>.
      // TrustDomain of the workload. May be elided if this is the mesh wide default (typically cluster.local)
      string trust_domain = 6;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. cmd/handler-utils.go

    func extractMetadataFromReq(ctx context.Context, r *http.Request) (metadata map[string]string, err error) {
    	return extractMetadata(ctx, textproto.MIMEHeader(r.Form), textproto.MIMEHeader(r.Header))
    }
    
    func extractMetadata(ctx context.Context, mimesHeader ...textproto.MIMEHeader) (metadata map[string]string, err error) {
    	metadata = make(map[string]string)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. internal/kms/config.go

    )
    
    // Environment variables for static KMS key.
    const (
    	EnvKMSSecretKey     = "MINIO_KMS_SECRET_KEY"      // Static KMS key in the form "<key-name>:<base64-32byte-key>". Implements a subset of KMS/KES APIs
    	EnvKMSSecretKeyFile = "MINIO_KMS_SECRET_KEY_FILE" // Path to a file to read the static KMS key from
    )
    
    const (
    	tlsClientSessionCacheSize = 100
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. cmd/sftp-server.go

    	errSFTPLDAPNotEnabled     = errors.New("ldap authentication is not enabled")
    )
    
    // if the sftp parameter --trusted-user-ca-key is set, then
    // the final form of the key file will be set as this variable.
    var caPublicKey ssh.PublicKey
    
    // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=46
    // preferredKexAlgos specifies the default preference for key-exchange
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/os/exec.go

    type ProcAttr struct {
    	// If Dir is non-empty, the child changes into the directory before
    	// creating the process.
    	Dir string
    	// If Env is non-nil, it gives the environment variables for the
    	// new process in the form returned by Environ.
    	// If it is nil, the result of Environ will be used.
    	Env []string
    	// Files specifies the open files inherited by the new process. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. cmd/storage-datatypes.go

    //   - on rewrite dataDir on disk that must be additionally purged
    //     only after as a 2-phase call, allowing the older dataDir to
    //     hang-around in-case we need some form of recovery.
    type RenameDataResp struct {
    	Sign       []byte
    	OldDataDir string // contains '<uuid>', it is designed to be passed as value to Delete(bucket, pathJoin(object, dataDir))
    }
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top