Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 98 for lima (0.12 sec)

  1. plugin/pkg/admission/limitranger/admission.go

    	req, reqExists := request[api.ResourceName(resourceName)]
    	lim, limExists := limit[api.ResourceName(resourceName)]
    	observedReqValue, observedLimValue, enforcedValue := requestLimitEnforcedValues(req, lim, enforced)
    
    	if !reqExists {
    		return fmt.Errorf("minimum %s usage per %s is %s.  No request is specified", resourceName, limitType, enforced.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/benchmarks.md

        * Da mesma forma que o Starlette utiliza o Uvicorn e não consegue ser mais rápido que ele, o **FastAPI** utiliza o Starlette, portanto, ele não consegue ser mais rápido que ele.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/html.go

    .highlight-skyblue        { background-color: skyblue; color: black; }
    .highlight-lightgray      { background-color: lightgray; color: black; }
    .highlight-yellow         { background-color: yellow; color: black; }
    .highlight-lime           { background-color: lime; color: black; }
    .highlight-khaki          { background-color: khaki; color: black; }
    .highlight-aqua           { background-color: aqua; color: black; }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  4. pkg/apis/core/helper/qos/qos.go

    	}
    	if len(requests) == 0 && len(limits) == 0 {
    		return core.PodQOSBestEffort
    	}
    	// Check is requests match limits for all resources.
    	if isGuaranteed {
    		for name, req := range requests {
    			if lim, exists := limits[name]; !exists || lim.Cmp(req) != 0 {
    				isGuaranteed = false
    				break
    			}
    		}
    	}
    	if isGuaranteed &&
    		len(requests) == len(limits) {
    		return core.PodQOSGuaranteed
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 04:01:46 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                    files.from(configurations.compileClasspath)
                    expected.set(listOf("libs-a-1.0.jar", "libs-b-1.0.jar"))
                }
            """
    
            when:
            libA.pom.expectGet()
            libA.artifact.expectGet()
            libB.pom.expectGet()
            libB.artifact.expectGet()
    
            then:
            succeeds ':checkDeps'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. docs/compression/README.md

    - Extensions
    
     | `gz`  | (GZIP)      |
     | `bz2` | (BZIP2)     |
     | `rar` | (WinRAR)    |
     | `zip` | (ZIP)       |
     | `7z`  | (7-Zip)     |
     | `xz`  | (LZMA)      |
     | `mp4` | (MP4)       |
     | `mkv` | (MKV media) |
     | `mov` | (MOV)       |
    
    - Content-Types
    
     | `video/*`                |
     | `audio/*`                |
     | `application/zip`        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/encoding/base32/base32_test.go

    func (b *badReader) Read(p []byte) (int, error) {
    	lim := len(p)
    	if b.limit != 0 && b.limit < lim {
    		lim = b.limit
    	}
    	if len(b.data) < lim {
    		lim = len(b.data)
    	}
    	for i := range p[:lim] {
    		p[i] = b.data[i]
    	}
    	b.data = b.data[lim:]
    	err := io.EOF
    	if b.called < len(b.errs) {
    		err = b.errs[b.called]
    	}
    	b.called++
    	return lim, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DistributionFactoryTest.groovy

            def libA = tmpDir.createFile("lib/a.jar")
            def libB = tmpDir.createFile("lib/b.jar")
    
            expect:
            def dist = factory.getDistribution(tmpDir.testDirectory)
            dist.getToolingImplementationClasspath(progressLoggerFactory, buildProgressListener, connectionParameters, cancellationToken).asFiles as Set == [libA, libB] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat.go

    func (x *Nat) Bytes(m *Modulus) []byte {
    	i := m.Size()
    	bytes := make([]byte, i)
    	for _, limb := range x.limbs {
    		for j := 0; j < _S; j++ {
    			i--
    			if i < 0 {
    				if limb == 0 {
    					break
    				}
    				panic("bigmod: modulus is smaller than nat")
    			}
    			bytes[i] = byte(limb)
    			limb >>= 8
    		}
    	}
    	return bytes
    }
    
    // SetBytes assigns x = b, where b is a slice of big-endian bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/runtime/syscall_aix.go

    	_, err = syscall2(&libc_setgroups, ngid, gid)
    	return
    }
    
    //go:linkname syscall_setrlimit1 syscall.setrlimit1
    //go:nosplit
    func syscall_setrlimit1(which uintptr, lim unsafe.Pointer) (err uintptr) {
    	_, err = syscall2(&libc_setrlimit, which, uintptr(lim))
    	return
    }
    
    //go:linkname syscall_setsid syscall.setsid
    //go:nosplit
    func syscall_setsid() (pid, err uintptr) {
    	pid, err = syscall0(&libc_setsid)
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top