Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 401 for perf (0.19 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

    - **Node**
      - [alpha] Publish node performance dashboard at http://node-perf-dash.k8s.io/#/builds ([docs](https://github.com/kubernetes/contrib/blob/master/node-perf-dash/README.md)) ([kubernetes/features#83](https://github.com/kubernetes/enhancements/issues/83))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.3.md

    * Adding nodeports services to quota ([#22154](https://github.com/kubernetes/kubernetes/pull/22154), [@sdminonne](https://github.com/sdminonne))
    * e2e: adapt kubelet_perf.go to use the new summary metrics API ([#24003](https://github.com/kubernetes/kubernetes/pull/24003), [@yujuhong](https://github.com/yujuhong))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    	for i := 1; i < len(s); i++ {
    		if !reflect.DeepEqual(s[i], s[0]) {
    			return errSRIAMConfigMismatch(peers[0].Name, peers[i].Name, s[0], s[i])
    		}
    	}
    
    	return nil
    }
    
    // Netperf for site-replication net perf
    func (c *SiteReplicationSys) Netperf(ctx context.Context, duration time.Duration) (results madmin.SiteNetPerfResult, err error) {
    	infos, err := globalSiteReplicationSys.GetClusterInfo(ctx)
    	if err != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  4. api/go1.txt

    pkg syscall (linux-386), const PR_SET_TSC ideal-int
    pkg syscall (linux-386), const PR_SET_UNALIGN ideal-int
    pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_DISABLE ideal-int
    pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_ENABLE ideal-int
    pkg syscall (linux-386), const PR_TIMING_STATISTICAL ideal-int
    pkg syscall (linux-386), const PR_TIMING_TIMESTAMP ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  5. api/go1.1.txt

    pkg syscall (linux-386), const PR_SET_TIMING = 14
    pkg syscall (linux-386), const PR_SET_TSC = 26
    pkg syscall (linux-386), const PR_SET_UNALIGN = 6
    pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_DISABLE = 31
    pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_ENABLE = 32
    pkg syscall (linux-386), const PR_TIMING_STATISTICAL = 0
    pkg syscall (linux-386), const PR_TIMING_TIMESTAMP = 1
    pkg syscall (linux-386), const PR_TSC_ENABLE = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  6. cmd/metrics-resource.go

    					if hm.CPU.CPUCount > 0 {
    						perc := math.Round(ls.Load1*100*100/float64(hm.CPU.CPUCount)) / 100
    						updateResourceMetrics(cpuSubsystem, cpuLoad1Perc, perc, labels, false)
    						perc = math.Round(ls.Load5*100*100/float64(hm.CPU.CPUCount)) / 100
    						updateResourceMetrics(cpuSubsystem, cpuLoad5Perc, perc, labels, false)
    						perc = math.Round(ls.Load15*100*100/float64(hm.CPU.CPUCount)) / 100
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 23:56:12 GMT 2024
    - 17.4K bytes
    - Viewed (0)
  7. cmd/metrics-v3-system-cpu.go

    	cpuMetrics, _ := c.cpuMetrics.Get()
    
    	if cpuMetrics.LoadStat != nil {
    		m.Set(sysCPULoad, cpuMetrics.LoadStat.Load1)
    		perc := cpuMetrics.LoadStat.Load1 * 100 / float64(cpuMetrics.CPUCount)
    		m.Set(sysCPULoadPerc, math.Round(perc*100)/100)
    	}
    
    	ts := cpuMetrics.TimesStat
    	tot := ts.User + ts.System + ts.Idle + ts.Iowait + ts.Nice + ts.Steal
    	cpuUserVal := math.Round(ts.User/tot*100*100) / 100
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 23:56:12 GMT 2024
    - 3K bytes
    - Viewed (0)
  8. internal/lock/lock_nix.go

    // flags and shouldn't be considered as replacement
    // for os.OpenFile().
    func LockedOpenFile(path string, flag int, perm os.FileMode) (*LockedFile, error) {
    	return lockedOpenFile(path, flag, perm, 0)
    }
    
    // Open - Call os.OpenFile
    func Open(path string, flag int, perm os.FileMode) (*os.File, error) {
    	return os.OpenFile(path, flag, perm)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Aug 19 01:35:22 GMT 2021
    - 2.8K bytes
    - Viewed (0)
  9. docs/es/docs/python-types.md

    ```
    
    Es algo diferente.
    
    Estamos usando los dos puntos (`:`), no un símbolo de igual (`=`).
    
    Añadir los type hints normalmente no cambia lo que sucedería si ellos no estuviesen presentes.
    
    Pero ahora imagina que nuevamente estás creando la función, pero con los type hints.
    
    En el mismo punto intentas iniciar el auto-completado con `Ctrl+Space` y ves:
    
    <img src="https://fastapi.tiangolo.com/img/python-types/image02.png">
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  10. pom.xml

    							<mapper>
    								<type>perm</type>
    								<user>${packaging.fess.user}</user>
    								<group>${packaging.fess.group}</group>
    							</mapper>
    						</data>
    						<data>
    							<type>directory</type>
    							<src>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/tomcat</src>
    							<mapper>
    								<type>perm</type>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
Back to top