Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 266 for umagic (0.14 sec)

  1. src/internal/bytealg/indexbyte_arm64.s

    	// in the syndrome reflect exactly the order in which things occur
    	// in the original string, counting trailing zeros allows to
    	// identify exactly which byte has matched.
    
    	CBZ	R2, fail
    	MOVD	R0, R11
    	// Magic constant 0x40100401 allows us to identify
    	// which lane matches the requested byte.
    	// 0x40100401 = ((1<<0) + (4<<8) + (16<<16) + (64<<24))
    	// Different bytes have different bit masks (i.e: 1, 4, 16, 64)
    	MOVD	$0x40100401, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  2. src/net/interface_plan9.go

    		statusf, err := open(status)
    		if err != nil {
    			return nil, err
    		}
    		defer statusf.close()
    
    		// Read but ignore first line as it only contains the table header.
    		// See https://9p.io/magic/man2html/3/ip
    		if _, ok := statusf.readLine(); !ok {
    			return nil, errors.New("cannot read header line for interface: " + status)
    		}
    
    		for line, ok := statusf.readLine(); ok; line, ok = statusf.readLine() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

     * limitations under the License.
     */
    package okhttp3.internal.ws
    
    import okio.Buffer
    import okio.ByteString.Companion.encodeUtf8
    
    object WebSocketProtocol {
      /** Magic value which must be appended to the key in a response header. */
      internal const val ACCEPT_MAGIC = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
    
      /*
      Each frame starts with two bytes of data.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/net/dnsconfig_unix.go

    			for i := 1; i < len(f); i++ {
    				name := ensureRooted(f[i])
    				if name == "." {
    					continue
    				}
    				conf.search = append(conf.search, name)
    			}
    
    		case "options": // magic options
    			for _, s := range f[1:] {
    				switch {
    				case stringslite.HasPrefix(s, "ndots:"):
    					n, _, _ := dtoi(s[6:])
    					if n < 0 {
    						n = 0
    					} else if n > 15 {
    						n = 15
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/plugins.go

    	allPlugins := []volume.VolumePlugin{}
    
    	// The list of plugins to probe is decided by this binary, not
    	// by dynamic linking or other "magic".  Plugins will be analyzed and
    	// initialized later.
    
    	// Each plugin can make use of VolumeConfig.  The single arg to this func contains *all* enumerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/ar.go

    // license that can be found in the LICENSE file.
    
    package gccgoimporter
    
    import (
    	"bytes"
    	"debug/elf"
    	"errors"
    	"fmt"
    	"internal/xcoff"
    	"io"
    	"strconv"
    	"strings"
    )
    
    // Magic strings for different archive file formats.
    const (
    	armag  = "!<arch>\n"
    	armagt = "!<thin>\n"
    	armagb = "<bigaf>\n"
    )
    
    // Offsets and sizes for fields in a standard archive header.
    const (
    	arNameOff  = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. src/math/rand/v2/example_test.go

    		"Better not tell you now",
    		"Cannot predict now",
    		"Concentrate and ask again",
    		"Don't count on it",
    		"My reply is no",
    		"My sources say no",
    		"Outlook not so good",
    		"Very doubtful",
    	}
    	fmt.Println("Magic 8-Ball says:", answers[rand.IntN(len(answers))])
    }
    
    // This example shows the use of each of the methods on a *Rand.
    // The use of the global functions is the same, without the receiver.
    func Example_rand() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/sym/symkind.go

    	// object it checks all objects of the above types and bumps any object that
    	// has a relocation to it to the corresponding type below, which are then
    	// written to sections with appropriate magic names.
    	STYPERELRO
    	SSTRINGRELRO
    	SGOSTRINGRELRO
    	SGOFUNCRELRO
    	SGCBITSRELRO
    	SRODATARELRO
    	SFUNCTABRELRO
    	SELFRELROSECT
    
    	// Part of .data.rel.ro if it exists, otherwise part of .rodata.
    	STYPELINK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/testing/testserver.go

    type TearDownFunc func()
    
    // TestServer return values supplied by kube-test-ApiServer
    type TestServer struct {
    	LoopbackClientConfig *restclient.Config // Rest client config using the magic token
    	Options              *options.Options
    	Config               *kubeschedulerconfig.Config
    	TearDownFn           TearDownFunc // TearDown function
    	TmpDir               string       // Temp Dir used, by the apiserver
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 10:35:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	if textsect == nil {
    		return fmt.Errorf("missing __text section")
    	}
    
    	cmdOffset := unsafe.Sizeof(exem.FileHeader)
    	if is64bit := exem.Magic == macho.Magic64; is64bit {
    		// mach_header_64 has one extra uint32.
    		cmdOffset += unsafe.Sizeof(exem.Magic)
    	}
    	dwarfCmdOffset := uint32(cmdOffset) + exem.FileHeader.Cmdsz
    	availablePadding := textsect.Offset - dwarfCmdOffset
    	if availablePadding < realdwarf.Len {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top