Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Sysinfo (1.69 sec)

  1. cmd/admin-handlers.go

    		return
    	}
    
    	// Get capacity info when asked.
    	if r.Form.Get("capacity") == "true" {
    		sinfo := objectAPI.StorageInfo(ctx, false)
    		dataUsageInfo.TotalCapacity = GetTotalUsableCapacity(sinfo.Disks, sinfo)
    		dataUsageInfo.TotalFreeCapacity = GetTotalUsableCapacityFree(sinfo.Disks, sinfo)
    		if dataUsageInfo.TotalCapacity > dataUsageInfo.TotalFreeCapacity {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 99.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

            lsarpc.LsarQosInfo qosInfo = new lsarpc.LsarQosInfo();
            qosInfo.length = 10;
            qosInfo.impersonation_level = 1;
            qosInfo.context_mode = 2;
            qosInfo.effective_only = 3;
    
            qosInfo.encode(mockNdrBuffer);
    
            // Verify encode calls
            verify(mockNdrBuffer).align(4);
            verify(mockNdrBuffer).enc_ndr_long(qosInfo.length);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/lib/jline-native/README.txt

    follow JLine's directory and filename conventions.
    
    [1] https://github.com/jline/jline3/tree/master/native
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 428 bytes
    - Viewed (0)
  4. cmd/metrics.go

    		float64(GetTotalUsableCapacity(server.Disks, sinfo)),
    	)
    
    	// Report total usable capacity free
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    			prometheus.BuildFQName(minioNamespace, "capacity_usable_free", "total"),
    			"Total free usable capacity online in the cluster",
    			nil, nil),
    		prometheus.GaugeValue,
    		float64(GetTotalUsableCapacityFree(server.Disks, sinfo)),
    	)
    
    	// MinIO Offline Disks per node
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. cmd/notification.go

    		}
    	}
    	return reply
    }
    
    // GetOSInfo - Get operating system's information
    func (sys *NotificationSys) GetOSInfo(ctx context.Context) []madmin.OSInfo {
    	reply := make([]madmin.OSInfo, len(sys.peerClients))
    
    	g := errgroup.WithNErrs(len(sys.peerClients))
    	for index, client := range sys.peerClients {
    		if client == nil {
    			continue
    		}
    		index := index
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.9K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    	sinfo, err := c.siteReplicationStatus(ctx, objAPI, opts)
    	if err != nil {
    		return info, err
    	}
    	info = madmin.SRStatusInfo{
    		Enabled:           sinfo.Enabled,
    		MaxBuckets:        sinfo.MaxBuckets,
    		MaxUsers:          sinfo.MaxUsers,
    		MaxGroups:         sinfo.MaxGroups,
    		MaxPolicies:       sinfo.MaxPolicies,
    		MaxILMExpiryRules: sinfo.MaxILMExpiryRules,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 184.7K bytes
    - Viewed (0)
  7. cmd/peer-rest-server.go

    	madminCPUs             = grid.NewJSONPool[madmin.CPUs]()
    	madminMemInfo          = grid.NewJSONPool[madmin.MemInfo]()
    	madminNetInfo          = grid.NewJSONPool[madmin.NetInfo]()
    	madminOSInfo           = grid.NewJSONPool[madmin.OSInfo]()
    	madminPartitions       = grid.NewJSONPool[madmin.Partitions]()
    	madminProcInfo         = grid.NewJSONPool[madmin.ProcInfo]()
    	madminRealtimeMetrics  = grid.NewJSONPool[madmin.RealtimeMetrics]()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Mar 30 00:56:02 UTC 2025
    - 53.4K bytes
    - Viewed (0)
  8. cmd/peer-rest-client.go

    	return resp.ValueOrZero(), err
    }
    
    // GetOSInfo - fetch OS information for a remote node.
    func (client *peerRESTClient) GetOSInfo(ctx context.Context) (info madmin.OSInfo, err error) {
    	resp, err := getOSInfoRPC.Call(ctx, client.gridConn(), grid.NewMSS())
    	return resp.ValueOrZero(), err
    }
    
    // GetSELinuxInfo - fetch SELinux information for a remote node.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Sep 09 16:58:30 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top