Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 341 for Words (0.04 sec)

  1. src/cmd/compile/internal/ssa/writebarrier.go

    // A ZeroRegion only applies to a single memory state.
    // Each bit in mask is set if the corresponding pointer-sized word of
    // the base object is known to be zero.
    // In other words, if mask & (1<<i) != 0, then [base+i*ptrSize, base+(i+1)*ptrSize)
    // is known to be zero.
    type ZeroRegion struct {
    	base *Value
    	mask uint64
    }
    
    // mightBeHeapPointer reports whether v might point to the heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  2. android/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.2K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

      }
    
      /**
       * Asserts that the collection under test contains exactly the elements it was initialized with
       * plus the given elements, according to {@link #expectContents(java.util.Collection)}. In other
       * words, for the default {@code expectContents()} implementation, the number of occurrences of
       * each given element has increased by one since the test collection was created, and the number
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. pkg/proxy/servicechangetracker.go

    	return result
    }
    
    // merge adds other ServicePortMap's elements to current ServicePortMap.
    // If collision, other ALWAYS win. Otherwise add the other to current.
    // In other words, if some elements in current collisions with other, update the current by other.
    func (sm *ServicePortMap) merge(other ServicePortMap) {
    	for svcPortName, info := range other {
    		_, exists := (*sm)[svcPortName]
    		if !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. src/crypto/sha1/sha1block_arm.s

    // 8(FP) is p.len
    //12(FP) is p.cap
    //
    // Stack frame
    #define p_end	end-4(SP)		// pointer to the end of data
    #define p_data	data-8(SP)	// current data pointer (unused?)
    #define w_buf	buf-(8+4*80)(SP)	//80 words temporary buffer w uint32[80]
    #define saved	abcde-(8+4*80+4*5)(SP)	// saved sha1 registers a,b,c,d,e - these must be last (unused?)
    // Total size +4 for saved LR is 352
    
    	// w[i] = p[j]<<24 | p[j+1]<<16 | p[j+2]<<8 | p[j+3]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

      }
    
      /**
       * Asserts that the collection under test contains exactly the elements it was initialized with
       * plus the given elements, according to {@link #expectContents(java.util.Collection)}. In other
       * words, for the default {@code expectContents()} implementation, the number of occurrences of
       * each given element has increased by one since the test collection was created, and the number
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. 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)
  8. cmd/kubeadm/app/cmd/completion.go

    			COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
    		done
    	fi
    }
    
    __kubeadm_get_comp_words_by_ref() {
    	cur="${COMP_WORDS[COMP_CWORD]}"
    	prev="${COMP_WORDS[${COMP_CWORD}-1]}"
    	words=("${COMP_WORDS[@]}")
    	cword=("${COMP_CWORD[@]}")
    }
    
    __kubeadm_filedir() {
    	local RET OLD_IFS w qw
    
    	__kubectl_debug "_filedir $@ cur=$cur"
    	if [[ "$1" = \~* ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. src/math/big/arith_arm64.s

    	ADC	$0, R12, R4
    
    	STP.P	(R6, R11), 16(R1)
    	SUB	$2, R0
    
    // The main loop of this code operates on a block of 4 words every iteration
    // performing [R4:R12:R11:R10:R9] = R4 + R3 * [R8:R7:R6:R5] + [R12:R11:R10:R9]
    // where R4 is carried from the previous iteration, R8:R7:R6:R5 hold the next
    // 4 words of x, R3 is y and R12:R11:R10:R9 are part of the result z.
    loop:
    	CBZ	R0, done
    
    	LDP.P	16(R2), (R5, R6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. src/runtime/sys_windows_arm64.s

    	CMP	$5,	R0; BEQ	_5args
    	CMP	$6,	R0; BEQ	_6args
    	CMP	$7,	R0; BEQ	_7args
    	CMP	$8,	R0; BEQ	_8args
    
    	// Reserve stack space for remaining args
    	SUB	$8, R0, R2
    	ADD	$1, R2, R3 // make even number of words for stack alignment
    	AND	$~1, R3
    	LSL	$3, R3
    	SUB	R3, RSP
    
    	// R4: size of stack arguments (n-8)*8
    	// R5: &args[8]
    	// R6: loop counter, from 0 to (n-8)*8
    	// R7: scratch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top