Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 306 for middle3 (0.29 sec)

  1. pkg/kubelet/qos/policy.go

    	case v1.PodQOSGuaranteed:
    		// Guaranteed containers should be the last to get killed.
    		return guaranteedOOMScoreAdj
    	case v1.PodQOSBestEffort:
    		return besteffortOOMScoreAdj
    	}
    
    	// Burstable containers are a middle tier, between Guaranteed and Best-Effort. Ideally,
    	// we want to protect Burstable containers that consume less memory than requested.
    	// The formula below is a heuristic. A container requesting for 10% of a system's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReader.java

         * A value of -1 indicates that no character is in the buffer.
         */
        private int[] readAheadChars = new int[2];
    
        /**
         * Whether or not the parser is currently in the middle of a string literal.
         */
        private boolean inString;
    
        /**
         * Whether or not the last char has been a backslash.
         */
        private boolean quoted;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/versions.md

    So, you should be able to pin to a version like:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Breaking changes and new features are added in "MINOR" versions.
    
    !!! tip
        The "MINOR" is the number in the middle, for example, in `0.2.3`, the MINOR version is `2`.
    
    ## Upgrading the FastAPI versions
    
    You should add tests for your app.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 05 20:50:37 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  4. src/time/internal_test.go

    // Test that a runtimeTimer with a period that would overflow when on
    // expiration does not throw or cause other timers to hang.
    //
    // This test has to be in internal_test.go since it fiddles with
    // unexported data structures.
    func CheckRuntimeTimerPeriodOverflow() {
    	// We manually create a runtimeTimer with huge period, but that expires
    	// immediately. The public Timer interface would require waiting for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    _Illustration._ Let F [in _Fig._ 18.] be the wide hole in the Window-shut, through which the Sun shines upon the first Prism ABC, and let the refracted Light fall upon the middle of the Board DE, and the middle part of that Light upon the hole G made in the middle part of that Board. Let this trajected part of that Light fall again upon the middle of the second Board _de_, and there paint such an oblong coloured Image of the Sun as was described in the third Experiment. By turning the Prism ABC slowly to and...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/ipallocator_test.go

    			name:    "IPv6 offset last",
    			address: netip.MustParseAddr("fd00:1:2:3::"),
    			offset:  0x7FFFFFFFFFFFFFFF,
    			want:    netip.MustParseAddr("fd00:1:2:3:7FFF:FFFF:FFFF:FFFF"),
    		},
    		{
    			name:    "IPv4 offset middle",
    			address: netip.MustParseAddr("192.168.0.0"),
    			offset:  128,
    			want:    netip.MustParseAddr("192.168.0.128"),
    		},
    		{
    			name:    "IPv4 with leading zeros",
    			address: netip.MustParseAddr("0.0.1.8"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    Window-shut, through which the Sun shines upon the first Prism ABC, and
    let the refracted Light fall upon the middle of the Board DE, and the
    middle part of that Light upon the hole G made in the middle part of
    that Board. Let this trajected part of that Light fall again upon the
    middle of the second Board _de_, and there paint such an oblong coloured
    Image of the Sun as was described in the third Experiment. By turning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  8. src/net/mptcpsock_linux.go

    }
    
    // hasFallenBack reports whether the MPTCP connection has fallen back to "plain"
    // TCP.
    //
    // A connection can fallback to TCP for different reasons, e.g. the other peer
    // doesn't support it, a middle box "accidentally" drops the option, etc.
    //
    // If the MPTCP protocol has not been requested when creating the socket, this
    // method will return true: MPTCP is not being used.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 18:48:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. docs/en/docs/img/deployment/https/https05.drawio

                    <mxCell id="3" value="&lt;font face=&quot;Roboto&quot;&gt;&lt;span style=&quot;font-size: 24px&quot;&gt;Server(s)&lt;/span&gt;&lt;/font&gt;" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;strokeWidth=3;fontFamily=Roboto Mono, mono;FType=g;" parent="1" vertex="1">
                        <mxGeometry x="710" y="-50" width="300" height="80" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/testers/ListAddAllAtIndexTester.java

      }
    
      @ListFeature.Require(SUPPORTS_ADD_WITH_INDEX)
      @CollectionSize.Require(absent = {ZERO, ONE})
      public void testAddAllAtIndex_middle() {
        assertTrue(
            "addAll(middle, disjoint) should return true",
            getList().addAll(getNumElements() / 2, createDisjointCollection()));
        expectAdded(getNumElements() / 2, createDisjointCollection());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top