Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 341 for Words (0.07 sec)

  1. src/crypto/internal/edwards25519/field/fe_test.go

    func (v *Element) toBig() *big.Int {
    	buf := v.Bytes()
    
    	words := make([]big.Word, 32*8/bits.UintSize)
    	for n := range words {
    		for i := 0; i < bits.UintSize; i += 8 {
    			if len(buf) == 0 {
    				break
    			}
    			words[n] |= big.Word(buf[0]) << big.Word(i)
    			buf = buf[1:]
    		}
    	}
    
    	return new(big.Int).SetBits(words)
    }
    
    func TestDecimalConstants(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. src/runtime/memclr_ppc64x.s

    	// R3 = ptr
    	// R4 = n
    
    	// Determine if there are doublewords to clear
    check:
    	ANDCC $7, R4, R5  // R5: leftover bytes to clear
    	SRD   $3, R4, R6  // R6: double words to clear
    	CMP   R6, $0, CR1 // CR1[EQ] set if no double words
    
    	BC    12, 6, nozerolarge // only single bytes
    	CMP   R4, $512
    	BLT   under512           // special case for < 512
    	ANDCC $127, R3, R8       // check for 128 alignment of address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. src/runtime/profbuf.go

    // tag is stored in a circular buffer tags, running in parallel.
    // In the circular buffer data, each event takes 2+hdrsize+len(stk)
    // words: the value 2+hdrsize+len(stk), then the time of the event, then
    // hdrsize words giving the fixed-size header, and then len(stk) words
    // for the stack.
    //
    // The current effective offsets into the tags and data circular buffers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    		return nil, fmt.Errorf("no build info")
    	}
    	year, month, day := time.Now().UTC().Date()
    	goVers := info.GoVersion
    	// E.g.,  goVers:"go1.22-20240109-RC01 cl/597041403 +dcbe772469 X:loopvar"
    	words := strings.Fields(goVers)
    	goVers = words[0]
    	progPkgPath := info.Path
    	if progPkgPath == "" {
    		progPkgPath = strings.TrimSuffix(filepath.Base(os.Args[0]), ".exe")
    	}
    	prog := path.Base(progPkgPath)
    	progVers := info.Main.Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/base/base.go

    type Command struct {
    	// Run runs the command.
    	// The args are the arguments after the command name.
    	Run func(ctx context.Context, cmd *Command, args []string)
    
    	// UsageLine is the one-line usage message.
    	// The words between "go" and the first flag or argument in the line are taken to be the command name.
    	UsageLine string
    
    	// Short is the short description shown in the 'go help' output.
    	Short string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     * For a given build tree, only a single process is allowed write access to extract archives at a time.
     *
     * Multiple build processes are allowed to extract archives concurrently as long as they use different build trees (in other words, different root directories).
     * <p>
     * Within a process, only one thread is allowed write access to a given expanded directory. This is to avoid concurrent writes
     * to the same expanded directory.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    * `sample-project`: A Gradle build with plugins that report problems
    * `sample-ide`: a project that simulates the IDE functionality. In other words, it uses the Gradle Tooling API to configure and run the `sample-project` build and prints the received problem reports received during the process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. cmd/main.go

    	"github.com/minio/minio/internal/color"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/console"
    	"github.com/minio/pkg/v3/env"
    	"github.com/minio/pkg/v3/trie"
    	"github.com/minio/pkg/v3/words"
    )
    
    // GlobalFlags - global flags for minio.
    var GlobalFlags = []cli.Flag{
    	// Deprecated flag, so its hidden now - existing deployments will keep working.
    	cli.StringFlag{
    		Name:   "config-dir, C",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/reflect/makefunc.go

    // MakeFunc implementation.
    
    package reflect
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    // makeFuncImpl is the closure value implementing the function
    // returned by MakeFunc.
    // The first three words of this type must be kept in sync with
    // methodValue and runtime.reflectMethodValue.
    // Any changes should be reflected in all three.
    type makeFuncImpl struct {
    	makeFuncCtxt
    	ftyp *funcType
    	fn   func([]Value) []Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.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
    - 40.7K bytes
    - Viewed (0)
Back to top