Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,238 for inf2 (0.05 sec)

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

    func PktInfo4(info *Inet4Pktinfo) []byte {
    	b := make([]byte, CmsgSpace(SizeofInet4Pktinfo))
    	h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
    	h.Level = SOL_IP
    	h.Type = IP_PKTINFO
    	h.SetLen(CmsgLen(SizeofInet4Pktinfo))
    	*(*Inet4Pktinfo)(h.data(0)) = *info
    	return b
    }
    
    // PktInfo6 encodes Inet6Pktinfo into a socket control message of type IPV6_PKTINFO.
    func PktInfo6(info *Inet6Pktinfo) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/preflight/checks_linux.go

    func (mc MemCheck) Check() (warnings, errorList []error) {
    	info := syscall.Sysinfo_t{}
    	err := syscall.Sysinfo(&info)
    	if err != nil {
    		errorList = append(errorList, errors.Wrapf(err, "failed to get system info"))
    	}
    
    	// Totalram holds the total usable memory. Unit holds the size of a memory unit in bytes. Multiply them and convert to MB
    	actual := uint64(info.Totalram) * uint64(info.Unit) / 1024 / 1024
    	if actual < mc.Mem {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. docs/id/docs/tutorial/index.md

    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    <span style="color: green;">INFO</span>:     Waiting for application startup.
    <span style="color: green;">INFO</span>:     Application startup complete.
    ```
    
    </div>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/math/big/floatexample_test.go

    	//   -0  +Inf   -1
    	//
    	//    0  -Inf    1
    	//    0  -1.2    1
    	//    0    -0    0
    	//    0     0    0
    	//    0   1.2   -1
    	//    0  +Inf   -1
    	//
    	//  1.2  -Inf    1
    	//  1.2  -1.2    1
    	//  1.2    -0    1
    	//  1.2     0    1
    	//  1.2   1.2    0
    	//  1.2  +Inf   -1
    	//
    	// +Inf  -Inf    1
    	// +Inf  -1.2    1
    	// +Inf    -0    1
    	// +Inf     0    1
    	// +Inf   1.2    1
    	// +Inf  +Inf    0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. android/pom.xml

                       (Compare what guava-gwt has to do for maven-javadoc-plugin.)
                  -->
                  <arg>-sourcepath</arg>
                  <arg>doesnotexist</arg>
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <arg>-XDcompilePolicy=simple</arg>
                  <!-- -Xplugin:ErrorProne is set conditionally by a profile. -->
                </compilerArgs>
                <annotationProcessorPaths>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. pom.xml

                       (Compare what guava-gwt has to do for maven-javadoc-plugin.)
                  -->
                  <arg>-sourcepath</arg>
                  <arg>doesnotexist</arg>
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <arg>-XDcompilePolicy=simple</arg>
                  <!-- -Xplugin:ErrorProne is set conditionally by a profile. -->
                </compilerArgs>
                <annotationProcessorPaths>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. cmd/data-usage-cache.go

    func (d *dataUsageCache) root() *dataUsageEntry {
    	return d.find(d.Info.Name)
    }
    
    // rootHash returns the root of the cache.
    func (d *dataUsageCache) rootHash() dataUsageHash {
    	return hashPath(d.Info.Name)
    }
    
    // clone returns a copy of the cache with no references to the existing.
    func (d *dataUsageCache) clone() dataUsageCache {
    	clone := dataUsageCache{
    		Info:  d.Info,
    		Cache: make(map[string]dataUsageEntry, len(d.Cache)),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	pvName := pvc.Spec.VolumeName
    
    	if pvName == "" {
    		logger.V(5).Info("Persistent volume had no name for claim", "PVC", klog.KObj(pvc))
    		return pl.getCSIDriverInfoFromSC(logger, csiNode, pvc)
    	}
    
    	pv, err := pl.pvLister.Get(pvName)
    	if err != nil {
    		logger.V(5).Info("Unable to look up PV info for PVC and PV", "PVC", klog.KObj(pvc), "PV", klog.KRef("", pvName))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContext.java

            }
    
            @Override
            public void info(String msg) {
            }
    
            @Override
            public void info(String format, Object arg) {
            }
    
            @Override
            public void info(String format, Object arg1, Object arg2) {
            }
    
            @Override
            public void info(String format, Object... arguments) {
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/archivePerformanceProject/build.gradle

        doLast {
            visitIterations.each {
                zipTree(file("archive.zip")).each {
                    logger.info it.path
                }
            }
        }
    }
    
    tasks.register("visitTar") {
        doLast {
            visitIterations.each {
                tarTree(file("archive.tar")).each {
                    logger.info it.path
                }
            }
        }
    }
    
    tasks.register("visitTarGz") {
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top