Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 211 for Dword2 (0.2 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    // First, they are sorted by number of free CPUs in the sockets that contain them. Then, for each
    // socket they are sorted by number of free CPUs that they contain. The order is always ascending.
    // In other words, the relative order of two NUMA nodes is determined as follows:
    //  1. If the two NUMA nodes belong to different sockets, the NUMA node in the socket with the
    //     smaller amount of free CPUs appears first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	//
    	// +optional
    	LendablePercent *int32 `json:"lendablePercent,omitempty" protobuf:"varint,2,opt,name=lendablePercent"`
    	// The `BorrowingCL` of an Exempt priority level is implicitly `ServerCL`.
    	// In other words, an exempt priority level
    	// has no meaningful limit on how much it borrows.
    	// There is no explicit representation of that here.
    }
    
    // LimitResponse defines how to handle requests that can not be executed right now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Ascii.java

       * not specified.)
       *
       * @since 8.0
       */
      public static final byte US = 31;
    
      /**
       * Space: A normally non-printing graphic character used to separate words. It is also a format
       * effector which controls the movement of the printing position, one printing position forward.
       * (Applicable also to display devices.)
       *
       * @since 8.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/term/terminal.go

    	}
    
    	switch key {
    	case keyBackspace:
    		if t.pos == 0 {
    			return
    		}
    		t.eraseNPreviousChars(1)
    	case keyAltLeft:
    		// move left by a word.
    		t.pos -= t.countToLeftWord()
    		t.moveCursorToPos(t.pos)
    	case keyAltRight:
    		// move right by a word.
    		t.pos += t.countToRightWord()
    		t.moveCursorToPos(t.pos)
    	case keyLeft:
    		if t.pos == 0 {
    			return
    		}
    		t.pos--
    		t.moveCursorToPos(t.pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/concepts.md

    ## Program and Process
    
    We will talk a lot about the running "**process**", so it's useful to have clarity about what it means, and what's the difference with the word "**program**".
    
    ### What is a Program
    
    The word **program** is commonly used to describe many things:
    
    * The **code** that you write, the **Python files**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Graphs.java

       * Object) reachable} from node A.
       *
       * <p>This is a "snapshot" based on the current topology of {@code graph}, rather than a live view
       * of the transitive closure of {@code graph}. In other words, the returned {@link Graph} will not
       * be updated after modifications to {@code graph}.
       *
       * @since 33.1.0 (present with return type {@code Graph} since 20.0)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/regexp/syntax/regexp.go

    	OpBeginText                    // matches empty string at beginning of text
    	OpEndText                      // matches empty string at end of text
    	OpWordBoundary                 // matches word boundary `\b`
    	OpNoWordBoundary               // matches word non-boundary `\B`
    	OpCapture                      // capturing subexpression with index Cap, optional name Name
    	OpStar                         // matches Sub[0] zero or more times
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/advance.jsp

    							/></option>
    						<option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_pdf"
    							/></option>
    						<option value="word" <c:if test="${as.filetype.contains('word')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_word"
    							/></option>
    						<option value="excel" <c:if test="${as.filetype.contains('excel')}">selected</c:if>><la:message
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/mips64.s

    //	{
    //		outcode(int($1), &$2, int($4.Reg), &$6);
    //	}
    	ADDD	F1, F2, F3
    
    //	LFCMP freg ',' freg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	CMPEQD	F1, F2
    
    
    //
    // WORD
    //
    	WORD	$1	// 00000001
    	NOOP		// 00000000
    	SYNC		// 0000000f
    
    //
    // NOP
    //
    //	LNOP comma // asm doesn't support the trailing comma.
    //	{
    //		outcode(int($1), &nullgen, 0, &nullgen);
    //	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

                #include <stdlib.h>
                #include <windows.h>
    
                // Convenience method for getting a human readable form of the last error.
                void ErrorExit(const char *func){
                    DWORD errCode = GetLastError();
                    char *err;
                    if (!FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
                                       NULL,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top