Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,605 for statx (0.06 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	Setxattr(path string, attr string, data []byte, flags int) (err error)
    //sys	signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (newfd int, err error) = SYS_SIGNALFD4
    //sys	Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (err error)
    //sys	Sync()
    //sys	Syncfs(fd int) (err error)
    //sysnb	Sysinfo(info *Sysinfo_t) (err error)
    //sys	Tee(rfd int, wfd int, len int, flags int) (n int64, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue4932.dir/state.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package state
    
    import "./foo"
    
    func Public() {
    	var s Settings
    	s.op()
    }
    
    type State struct{}
    
    func (s *State) x(*Settings) {}
    
    type Settings struct{}
    
    func (c *Settings) x() {
    	run([]foo.Op{{}})
    }
    
    func run([]foo.Op) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:42:03 UTC 2013
    - 434 bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Stats.java

       * versions.
       */
      public static Stats fromByteArray(byte[] byteArray) {
        checkNotNull(byteArray);
        checkArgument(
            byteArray.length == BYTES,
            "Expected Stats.BYTES = %s remaining , got %s",
            BYTES,
            byteArray.length);
        return readFrom(ByteBuffer.wrap(byteArray).order(ByteOrder.LITTLE_ENDIAN));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. pkg/kubelet/status/state/state.go

    	SetResizeStatus(PodResizeStatus) error
    	Delete(podUID string, containerName string) error
    	ClearState() error
    }
    
    // State interface provides methods for tracking and setting pod resource allocation
    type State interface {
    	Reader
    	writer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. cmd/bucket-stats.go

    }
    
    func newBucketReplicationStats() *BucketReplicationStats {
    	return &BucketReplicationStats{
    		Stats: make(map[string]*BucketReplicationStat),
    	}
    }
    
    // Empty returns true if there are no target stats
    func (brs *BucketReplicationStats) Empty() bool {
    	return len(brs.Stats) == 0 && brs.ReplicaSize == 0
    }
    
    // Clone creates a new BucketReplicationStats copy
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. cmd/http-stats.go

    		return 0
    	}
    
    	stats.RLock()
    	defer stats.RUnlock()
    
    	val, ok := stats.apiStats[api]
    	if ok {
    		return val
    	}
    
    	return 0
    }
    
    // Load returns the recorded stats.
    func (stats *HTTPAPIStats) Load(toLower bool) map[string]int {
    	if stats == nil {
    		return map[string]int{}
    	}
    
    	stats.RLock()
    	defer stats.RUnlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/mdo/reader-stax.vm

            this.contentTransformer = contentTransformer;
        }
    
        /**
         * Returns the state of the "add default entities" flag.
         *
         * @return boolean
         */
        public boolean getAddDefaultEntities() {
            return addDefaultEntities;
        } //-- boolean getAddDefaultEntities()
    
        /**
         * Sets the state of the "add default entities" flag.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  8. internal/rest/rpc-stats.go

    }{}
    
    // RPCStats holds information about the DHCP/TCP metrics and errors
    type RPCStats struct {
    	Errs uint64
    
    	DialAvgDuration uint64
    	DialErrs        uint64
    }
    
    // GetRPCStats returns RPC stats, include calls errors and dhcp/tcp metrics
    func GetRPCStats() RPCStats {
    	s := RPCStats{
    		Errs:     atomic.LoadUint64(&globalStats.errs),
    		DialErrs: atomic.LoadUint64(&globalStats.tcpDialErrs),
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 16:27:58 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. releasenotes/notes/grpc-stats.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
      - 43908
      - 44144
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 04 01:47:33 UTC 2023
    - 158 bytes
    - Viewed (0)
  10. releasenotes/notes/native-stats.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
      **Updated** Telemetry API uses a new native extension for Prometheus stats
      instead of the Wasm-based extension. This improves CPU overhead and memory
      usage of the feature. Custom dimensions no longer require regex and bootstrap
      annotations. If customizations use CEL expressions with Wasm attributes, they
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 16:00:46 UTC 2022
    - 420 bytes
    - Viewed (0)
Back to top