Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Kubota (0.2 sec)

  1. cmd/api-errors.go

    	},
    	ErrAdminBucketQuotaExceeded: {
    		Code:           "XMinioAdminBucketQuotaExceeded",
    		Description:    "Bucket quota exceeded",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminNoSuchQuotaConfiguration: {
    		Code:           "XMinioAdminNoSuchQuotaConfiguration",
    		Description:    "The quota configuration does not exist",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrInsecureClientRequest: {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
  2. cmd/admin-handlers-users.go

    					VersioningSuspended: globalBucketVersioningSys.Suspended(bucket.Name),
    					Replication:         rcfg != nil,
    					Locking:             lcfg.LockEnabled,
    					Quota:               quota,
    					Tagging:             tcfg,
    				},
    				Access: madmin.AccountAccess{
    					Read:  rd,
    					Write: wr,
    				},
    			})
    		}
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 77.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

      * **alpha**: NVIDIA GPU support ([#24836](https://github.com/kubernetes/kubernetes/pull/24836), [@therc](https://github.com/therc))
      * Adding loadBalancer services and nodeports services to quota system
    
    ## Known Issues and Important Steps before Upgrading
    
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    	// the open file descriptor.
    	//
    	// Failing to check the return value when closing a file may lead to silent loss of data.
    	// This can especially be observed with NFS and with disk quota.
    	return w.Close()
    }
    
    func (s *xlStorage) writeAll(ctx context.Context, volume string, path string, b []byte, sync bool, skipParent string) (err error) {
    	if contextCanceled(ctx) {
    		return ctx.Err()
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if exactly `n` bytes have been written.
      ///   * Must set `status` to `TF_RESOURCE_EXHAUSTED` if fewer than `n` bytes
      ///     have been written, potentially due to quota/disk space.
      ///   * Might use any other error value for `status` to signal other errors.
      void (*append)(const TF_WritableFile* file, const char* buffer, size_t n,
                     TF_Status* status);
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
Back to top