Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 211 for stat (0.01 sec)

  1. cni/pkg/nodeagent/testdata/cgroupns/2/stat

    Ben Leggett <******@****.***> 1740189052 -0500
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-02-22 01:50
    - 332 bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/testdata/cgroupns/1/stat

    Ben Leggett <******@****.***> 1740189052 -0500
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-02-22 01:50
    - 332 bytes
    - Viewed (0)
  3. docs/site-replication/run-ssec-object-replication.sh

    	echo "BUG: object test-bucket/custpartsize not replicated"
    	exit_1
    fi
    
    # Stat the SSEC objects from source site
    echo "Stat minio1/test-bucket/encrypted"
    ./mc stat --no-list minio1/test-bucket/encrypted --enc-c "minio1/test-bucket/encrypted=${TEST_MINIO_ENC_KEY}" --insecure --json
    stat_out1=$(./mc stat --no-list minio1/test-bucket/encrypted --enc-c "minio1/test-bucket/encrypted=${TEST_MINIO_ENC_KEY}" --insecure --json)
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-24 08:03
    - 9.9K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/panels.libsonnet

        stat(title, targets, desc=''):
          stat.new(title)
          + stat.queryOptions.withTargets(targets)
          + stat.queryOptions.withInterval('5s')
          + options.legend.withDisplayMode('table')
          + options.legend.withCalcs([
            'last',
            'max',
          ])
          + stat.standardOptions.color.withFixedColor('blue')
          + stat.standardOptions.color.withMode('fixed')
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-07-26 23:54
    - 9.5K bytes
    - Viewed (0)
  5. internal/disk/stat_test.go

    package disk
    
    import (
    	"os"
    	"reflect"
    	"testing"
    )
    
    func TestReadDriveStats(t *testing.T) {
    	testCases := []struct {
    		stat            string
    		expectedIOStats IOStats
    		expectErr       bool
    	}{
    		{
    			stat: "1432553   420084 66247626  2398227  7077314  8720147 157049224  7469810        0  7580552  9869354    46037        0 41695120     1315        0        0",
    			expectedIOStats: IOStats{
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-18 16:25
    - 3.5K bytes
    - Viewed (0)
  6. cmd/bucket-replication-stats.go

    				Failed:          fstats.toMetric(),
    				FailStats:       fstats,
    				ReplicatedSize:  stat.ReplicatedSize + oldst.ReplicatedSize,
    				ReplicatedCount: stat.ReplicatedCount + oldst.ReplicatedCount,
    				Latency:         stat.Latency.merge(oldst.Latency),
    				XferRateLrg:     &lrg,
    				XferRateSml:     &sml,
    			}
    			totReplicatedSize += stat.ReplicatedSize
    			totReplicatedCount += stat.ReplicatedCount
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-18 16:25
    - 13.6K bytes
    - Viewed (0)
  7. docs/site-replication/run-multi-site-ldap.sh

    ./mc mb minio1/bucket2
    
    sleep 5
    ./mc stat --no-list minio2/newbucket
    if [ $? -ne 0 ]; then
    	echo "expecting bucket to be present. exiting.."
    	exit_1
    fi
    
    ./mc stat --no-list minio3/newbucket
    if [ $? -ne 0 ]; then
    	echo "expecting bucket to be present. exiting.."
    	exit_1
    fi
    
    ./mc cp README.md minio2/newbucket/
    
    sleep 5
    ./mc stat --no-list minio1/newbucket/README.md
    if [ $? -ne 0 ]; then
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-24 08:03
    - 10.1K bytes
    - Viewed (0)
  8. docs/site-replication/run-multi-site-oidc.sh

    ./mc cp ./lrgfile minio1/newbucket
    sleep 5
    ./mc stat --no-list minio2/newbucket
    if [ $? -ne 0 ]; then
    	echo "expecting bucket to be present. exiting.."
    	exit_1
    fi
    
    ./mc stat --no-list minio3/newbucket
    if [ $? -ne 0 ]; then
    	echo "expecting bucket to be present. exiting.."
    	exit_1
    fi
    
    ./mc cp README.md minio2/newbucket/
    
    sleep 5
    ./mc stat --no-list minio1/newbucket/README.md
    if [ $? -ne 0 ]; then
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-24 08:03
    - 8.5K bytes
    - Viewed (0)
  9. cmd/xl-storage_unix_test.go

    	if err = disk.MakeVol(t.Context(), testCase.volName); err != nil {
    		t.Fatalf("Creating a volume failed with %s expected to pass.", err)
    	}
    
    	// Stat to get permissions bits.
    	st, err := os.Stat(path.Join(tmpPath, testCase.volName))
    	if err != nil {
    		t.Fatalf("Stat failed with %s expected to pass.", err)
    	}
    
    	// Get umask of the bits stored.
    	currentUmask := 0o777 - uint32(st.Mode().Perm())
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-09 14:28
    - 3.4K bytes
    - Viewed (0)
  10. docs/site-replication/run-sse-kms-object-replication.sh

    echo "Stat minio1/test-bucket/custpartsize"
    ./mc stat --no-list minio1/test-bucket/custpartsize --insecure --json
    stat_out3=$(./mc stat --no-list minio1/test-bucket/custpartsize --insecure --json)
    src_obj3_algo=$(echo "${stat_out3}" | jq '.metadata."X-Amz-Server-Side-Encryption"')
    src_obj3_keyid=$(echo "${stat_out3}" | jq '.metadata."X-Amz-Server-Side-Encryption-Aws-Kms-Key-Id"')
    echo "Stat minio1/test-bucket/mpartobj"
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-10-10 06:49
    - 11.5K bytes
    - Viewed (0)
Back to top