Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 33 for percentage (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

         */
        public static class FsObj {
            /**
             * Default constructor.
             */
            public FsObj() {
                // Default constructor
            }
    
            /** The percentage of used space on the filesystem. */
            public short percent;
            /** Used space in bytes */
            public long used;
            /** Filesystem path */
            public String path;
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 19.7K bytes
    - Click Count (0)
  2. cmd/metrics-resource.go

    		cpuLoad5:          "CPU load average 5min",
    		cpuLoad15:         "CPU load average 15min",
    		cpuLoad1Perc:      "CPU load average 1min (percentage)",
    		cpuLoad5Perc:      "CPU load average 5min (percentage)",
    		cpuLoad15Perc:     "CPU load average 15min (percentage)",
    	}
    	resourceMetricsGroups = []*MetricsGroupV2{
    		getResourceMetrics(),
    	}
    
    	resourceCollector = newMinioResourceCollector(resourceMetricsGroups)
    Created: 2026-04-05 19:28
    - Last Modified: 2025-10-10 18:57
    - 17.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Gets the current system CPU usage percentage.
         *
         * @return The system CPU usage percentage.
         */
        public short currentSystemCpuPercent() {
            return getSystemCpuPercent();
        }
    
        /**
         * Gets the search engine CPU usage percentage.
         *
         * @return The search engine CPU usage percentage.
         */
        public short getSearchEngineCpuPercent() {
    Created: 2026-03-31 13:07
    - Last Modified: 2026-03-28 06:59
    - 43.2K bytes
    - Click Count (0)
  4. cmd/sts-datatypes.go

    	// of this writing, the typical size is less than 4096 bytes, but that can vary.
    	// Also, future updates to AWS might require larger sizes.
    	Credentials auth.Credentials `xml:",omitempty"`
    
    	// A percentage value that indicates the size of the policy in packed form.
    	// The service rejects any policy with a packed size greater than 100 percent,
    	// which means the policy exceeded the allowed space.
    Created: 2026-04-05 19:28
    - Last Modified: 2022-05-27 00:58
    - 9.9K bytes
    - Click Count (0)
  5. .github/workflows/smokeshow.yml

                    break
                fi
                echo "Smokeshow upload error, sleep 1 sec and try again."
                sleep 1
              done
            env:
              SMOKESHOW_GITHUB_STATUS_DESCRIPTION: Coverage {coverage-percentage}
              SMOKESHOW_GITHUB_COVERAGE_THRESHOLD: 100
              SMOKESHOW_GITHUB_CONTEXT: coverage
              SMOKESHOW_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-03 00:12
    - 1.6K bytes
    - Click Count (0)
  6. cmd/metrics-v3-system-memory.go

    )
    
    var (
    	memTotalMD     = NewGaugeMD(memTotal, "Total memory on the node")
    	memUsedMD      = NewGaugeMD(memUsed, "Used memory on the node")
    	memUsedPercMD  = NewGaugeMD(memUsedPerc, "Used memory percentage on the node")
    	memFreeMD      = NewGaugeMD(memFree, "Free memory on the node")
    	memBuffersMD   = NewGaugeMD(memBuffers, "Buffers memory on the node")
    	memCacheMD     = NewGaugeMD(memCache, "Cache memory on the node")
    Created: 2026-04-05 19:28
    - Last Modified: 2024-04-17 05:10
    - 2.2K bytes
    - Click Count (0)
  7. cmd/metrics-v3-system-cpu.go

    	sysCPUAvgIOWaitMD = NewGaugeMD(sysCPUAvgIOWait, "Average CPU IOWait time")
    	sysCPULoadMD      = NewGaugeMD(sysCPULoad, "CPU load average 1min")
    	sysCPULoadPercMD  = NewGaugeMD(sysCPULoadPerc, "CPU load average 1min (percentage)")
    	sysCPUNiceMD      = NewGaugeMD(sysCPUNice, "CPU nice time")
    	sysCPUStealMD     = NewGaugeMD(sysCPUSteal, "CPU steal time")
    	sysCPUSystemMD    = NewGaugeMD(sysCPUSystem, "CPU system time")
    Created: 2026-04-05 19:28
    - Last Modified: 2024-06-20 17:55
    - 3K bytes
    - Click Count (0)
  8. src/test/java/jcifs/internal/AllocInfoTest.java

        class UsagePatternTests {
    
            @Test
            @DisplayName("Should support percentage calculation pattern")
            void shouldSupportPercentageCalculationPattern() {
                // Given
                TestAllocInfo allocInfo = new TestAllocInfo(1000L, 250L);
    
                // When - calculate percentage free
                double percentFree = (allocInfo.getFree() * 100.0) / allocInfo.getCapacity();
    
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-14 05:31
    - 18.8K bytes
    - Click Count (0)
  9. cmd/metrics-v3-system-drive.go

    		allDriveLabels...)
    	driveWritesAwaitMD = NewGaugeMD(driveWritesAwait,
    		"Average time for write requests served on a drive",
    		allDriveLabels...)
    	drivePercUtilMD = NewGaugeMD(drivePercUtil,
    		"Percentage of time the disk was busy",
    		allDriveLabels...)
    )
    
    func getCurrentDriveIOStats() map[string]madmin.DiskIOStats {
    	types := madmin.MetricsDisk
    Created: 2026-04-05 19:28
    - Last Modified: 2025-03-30 00:56
    - 7.8K bytes
    - Click Count (0)
  10. scripts/general-llm-prompt.md

    Translate an English original content to a target language.
    
    The original content is written in Markdown, write the translation in Markdown as well.
    
    The original content will be surrounded by triple percentage signs (%%%). Do not include the triple percentage signs in the translation.
    
    ### Technical terms in English
    
    For technical terms in English that don't have a common translation term, use the original term in English.
    
    ### Content of code snippets
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-18 10:55
    - 14.6K bytes
    - Click Count (0)
Back to Top