Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for information (0.53 sec)

  1. cmd/peer-rest-server.go

    }
    
    // GetNetInfoHandler - returns network information.
    func (s *peerRESTServer) GetNetInfoHandler(_ *grid.MSS) (*grid.JSON[madmin.NetInfo], *grid.RemoteErr) {
    	info := madmin.GetNetInfo(globalLocalNodeName, globalInternodeInterface)
    	return madminNetInfo.NewJSONWith(&info), nil
    }
    
    // GetPartitionsHandler - returns disk partition information.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 51.8K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    	case serviceUnFreeze:
    		unfreezeServices()
    	case serviceRestart, serviceStop:
    		if !dryRun {
    			globalServiceSignalCh <- serviceSig
    		}
    	}
    }
    
    // ServerProperties holds some server information such as, version, region
    // uptime, etc..
    type ServerProperties struct {
    	Uptime       int64    `json:"uptime"`
    	Version      string   `json:"version"`
    	CommitID     string   `json:"commitID"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  3. src/main/java/jcifs/smb/SmbFile.java

                 * Trans2 Query Path Information Request / Response
                 */
                Trans2QueryPathInformationResponse response = new Trans2QueryPathInformationResponse(th.getConfig(), infoLevel);
                response = th.send(new Trans2QueryPathInformation(th.getConfig(), path, infoLevel), response);
    
                if ( log.isDebugEnabled() ) {
                    log.debug("Path information " + response);
                }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

    ///     loaded;
    ///   * `TF_FilesystemPluginOps` struct: used to transfer information between
    ///     plugins and core TensorFlow about the operations provided and metadata;
    ///   * `TF_FilesystemPluginInfo` struct: similar to the above structure, but
    ///     collects information about all the file schemes that the plugin provides
    ///     support for, as well as about the plugin's memory handling routines;
    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)
  5. tensorflow/c/c_api.h

    // Conventions:
    // * We use the prefix TF_ for everything in the API.
    // * Objects are always passed around as pointers to opaque structs
    //   and these structs are allocated/deallocated via the API.
    // * TF_Status holds error information.  It is an object type
    //   and therefore is passed around as a pointer to an opaque
    //   struct as mentioned above.
    // * Every call that has a TF_Status* argument clears it on success
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional int32 code = 6;
    }
    
    // StatusCause provides more information about an api.Status failure, including
    // cases when multiple errors are encountered.
    message StatusCause {
      // A machine-readable description of the cause of the error. If this value is
      // empty there is no information available.
      // +optional
      optional string reason = 1;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    		// Make sure to return object info to provide extra information.
    		return objInfo, wquorum, toObjectErr(errMethodNotAllowed, bucket, object)
    	}
    
    	if fi.Deleted {
    		if opts.VersionID == "" || opts.DeleteMarker {
    			return objInfo, wquorum, toObjectErr(errFileNotFound, bucket, object)
    		}
    		// Make sure to return object info to provide extra information.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 76.9K bytes
    - Viewed (2)
  8. cmd/batch-handlers.go

    			if !minioSrc {
    				// Check if metadata filter was requested and it is expected to have
    				// all user metadata or just storageClass. If its only storageClass
    				// List() already returns relevant information for filter to be applied.
    				if isMetadata && !isStorageClassOnly {
    					oi2, err := c.StatObject(ctx, r.Source.Bucket, obj.Key, miniogo.StatObjectOptions{})
    					if err == nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 08 14:11:38 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  9. docs/bucket/notifications/README.md

    MinIO also sends with the notifications two headers: `minio-bucket` and `minio-event`. An exchange using the type "headers" can use this information to route the notifications to proper queues.
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  10. cmd/xl-storage.go

    			dcinfo.ID = diskID
    			return dcinfo, err
    		},
    	)
    
    	// Success.
    	return s, nil
    }
    
    // getDiskInfo returns given disk information.
    func getDiskInfo(drivePath string) (di disk.Info, err error) {
    	if err = checkPathLength(drivePath); err == nil {
    		di, err = disk.GetInfo(drivePath, false)
    	}
    	switch {
    	case osIsNotExist(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)
Back to top