Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 379 for Words (0.04 sec)

  1. pkg/registry/core/service/allocator/bitmap.go

    // AllocationBitmap may not be modified while this loop is running.
    func (r *AllocationBitmap) ForEach(fn func(int)) {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    
    	words := r.allocated.Bits()
    	for wordIdx, word := range words {
    		bit := 0
    		for word > 0 {
    			if (word & 1) != 0 {
    				fn((wordIdx * wordSize * 8) + bit)
    				word = word &^ 1
    			}
    			bit++
    			word = word >> 1
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. security/pkg/server/ca/authenticate/cert_authenticator.go

    	return ClientCertAuthenticatorType
    }
    
    // Authenticate extracts identities from presented client certificates. This
    // method assumes that certificate chain has been properly validated before
    // this method is called. In other words, this method does not do certificate
    // chain validation itself.
    func (cca *ClientCertAuthenticator) Authenticate(authCtx security.AuthContext) (*security.Caller, error) {
    	if authCtx.GrpcContext != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:12 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/resource_operation_safety_analysis.h

    // the dependencies between them in the TensorFlow program.
    //
    // The restrictions are not transitive: it is fine to put A and C in the same
    // cluster even if the returned set contains (A,B) and (B,C).
    //
    // In other words, if these pairs are seen as edges in an undirected graph of
    // the nodes in `g` then auto-clustering is at least as constrained as the graph
    // coloring problem on this graph.
    //
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/internal/trace/resources.go

    	}
    }
    
    // Goroutine returns the state transition for a goroutine.
    //
    // Transitions to and from states that are Executing are special in that
    // they change the future execution context. In other words, future events
    // on the same thread will feature the same goroutine until it stops running.
    //
    // Panics if d.Resource.Kind is not ResourceGoroutine.
    func (d StateTransition) Goroutine() (from, to GoState) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/runtime/memclr_arm.s

    	MOVW	R0, R3
    	MOVW	R0, R4
    	MOVW	R0, R5
    	MOVW	R0, R6
    	MOVW	R0, R7
    
    _f32loop:
    	CMP	TMP, TO
    	BHS	_4tail
    
    	MOVM.IA.W [R0-R7], (TO)
    	B	_f32loop
    
    _4tail:
    	SUB	$3, TOE, TMP	/* do remaining words if possible */
    _4loop:
    	CMP	TMP, TO
    	BHS	_1tail
    
    	MOVW.P	R0, 4(TO)		/* implicit write back */
    	B	_4loop
    
    _1tail:
    	CMP	TO, TOE
    	BEQ	_return
    
    	MOVBU.P	R0, 1(TO)		/* implicit write back */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaToolchainSpec.java

     * <li> when {@link #getLanguageVersion() language version} has been set, optionally followed by setting any other property.
     * </ul>
     * <p>
     * In other words, if a vendor or an implementation are specified, they must be accompanied by the language version.
     * An empty specification in most cases corresponds to the toolchain that runs the current build.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/sync/once.go

    	done atomic.Uint32
    	m    Mutex
    }
    
    // Do calls the function f if and only if Do is being called for the
    // first time for this instance of [Once]. In other words, given
    //
    //	var once Once
    //
    // if once.Do(f) is called multiple times, only the first call will invoke f,
    // even if f has a different value in each invocation. A new instance of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

         * indicate how many bytes(note: readParameterWordsWireFormat
         * returns bytes read and not the number of words(but the
         * wordCount member DOES store the number of words)) we
         * actually read. Incedentally this is important to the
         * AndXServerMessageBlock class that needs to potentially
         * read in another smb's parameter words and bytes based on
         * information in it's andxCommand, andxOffset, ...etc.
         */ 
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_ru.properties

    labels.tooltip_logout=Logout
    labels.advance=Advance
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All these words
    labels.advance_search_phrase_query=Phrase search of these words
    labels.advance_search_should_queries=Any of these words
    labels.advance_search_not_queries=None of these words
    labels.advance_search_filetype=File Type
    labels.advance_search_filetype_default=All Type
    labels.advance_search_filetype_html=HTML
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

                this.isPrimary = false;
    
                // primarySetupOffset
                // SMB_COM_TRANSACTION: 61 = 32 SMB header + 1 (word count) + 28 (fixed words)
                // SMB_COM_NT_TRANSACTION: 69 = 32 SMB header + 1 (word count) + 38 (fixed words)
                this.parameterOffset = this.primarySetupOffset;
    
                // 2* setupCount
                this.parameterOffset += this.setupCount * 2;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
Back to top