Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 266 for umagic (0.16 sec)

  1. src/runtime/defs_linux_386.go

    type fpstate struct {
    	cw        uint32
    	sw        uint32
    	tag       uint32
    	ipoff     uint32
    	cssel     uint32
    	dataoff   uint32
    	datasel   uint32
    	_st       [8]fpreg
    	status    uint16
    	magic     uint16
    	_fxsr_env [6]uint32
    	mxcsr     uint32
    	reserved  uint32
    	_fxsr_st  [8]fpxreg
    	_xmm      [8]xmmreg
    	padding1  [44]uint32
    	anon0     [48]byte
    }
    
    type timespec struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/fakes_test.go

    	return nil
    }
    
    // fakeNs is a mock struct for testing
    type fakeNs struct {
    	closed *atomic.Bool
    	fd     uintptr
    	inode  uint64
    }
    
    func newFakeNs(fd uintptr) *fakeNs {
    	// the fake inode is the fd! magic.
    	return &fakeNs{closed: &atomic.Bool{}, fd: fd, inode: uint64(fd)}
    }
    
    func newFakeNsInode(fd uintptr, inode uint64) *fakeNs {
    	return &fakeNs{closed: &atomic.Bool{}, fd: fd, inode: inode}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. pkg/test/echo/proto/echo.proto

      string method = 9;
      // If true, requests will be sent using h2c prior knowledge
      bool http2 = 7;
      // If true, requests will be sent using http3
      bool http3 = 15;
      // If true, requests will not be sent until magic string is received
      bool serverFirst = 8;
      // If true, 301 redirects will be followed
      bool followRedirects = 14;
      // If non-empty, make the request with the corresponding cert and key.
      string cert = 10;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/image/color/palette/gen.go

    	fmt.Fprintln(w, "// of continuous tones.")
    	fmt.Fprintln(w, "//")
    	fmt.Fprintln(w, "// This palette was used in the Plan 9 Operating System, described at")
    	fmt.Fprintln(w, "// https://9p.io/magic/man2html/6/color")
    	fmt.Fprintln(w, "var Plan9 = []color.Color{")
    	for _, line := range lines {
    		fmt.Fprintln(w, line)
    	}
    	fmt.Fprintln(w, "}")
    	fmt.Fprintln(w)
    }
    
    func printWebSafe(w io.Writer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. src/math/rand/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: Wed Oct 26 16:24:57 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  6. src/runtime/export_debug_arm64_test.go

    	the following C structs:
    	struct fpsimd_context {
    		struct _aarch64_ctx head;
    		__u32 fpsr;
    		__u32 fpcr;
    		__uint128_t vregs[32];
    	};
    	struct _aarch64_ctx {
    		__u32 magic;
    		__u32 size;
    	};
    	So the offset of the ith FP_SIMD register is 16+i*128.
    	*/
    	return (*uint64)(unsafe.Pointer(&dst.__reserved[16+i*128]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/flag/flag_test.go

    func TestExitCode(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	magic := 123
    	if os.Getenv("GO_CHILD_FLAG") != "" {
    		fs := NewFlagSet("test", ExitOnError)
    		if os.Getenv("GO_CHILD_FLAG_HANDLE") != "" {
    			var b bool
    			fs.BoolVar(&b, os.Getenv("GO_CHILD_FLAG_HANDLE"), false, "")
    		}
    		fs.Parse([]string{os.Getenv("GO_CHILD_FLAG")})
    		os.Exit(magic)
    	}
    
    	tests := []struct {
    		flag       string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. src/internal/xcoff/xcoff.go

    // File Header.
    type FileHeader32 struct {
    	Fmagic   uint16 // Target machine
    	Fnscns   uint16 // Number of sections
    	Ftimedat uint32 // Time and date of file creation
    	Fsymptr  uint32 // Byte offset to symbol table start
    	Fnsyms   uint32 // Number of entries in symbol table
    	Fopthdr  uint16 // Number of bytes in optional header
    	Fflags   uint16 // Flags
    }
    
    type FileHeader64 struct {
    	Fmagic   uint16 // Target machine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

    import org.codelibs.fess.sso.SsoAuthenticator;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.core.magic.async.AsyncManager;
    import org.lastaflute.core.time.TimeManager;
    import org.lastaflute.web.login.LoginHandlingResource;
    import org.lastaflute.web.login.PrimaryLoginManager;
    import org.lastaflute.web.login.TypicalLoginAssist;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/support.go

    	"sync"
    )
    
    func assert(b bool) {
    	if !b {
    		panic("assertion failed")
    	}
    }
    
    func errorf(format string, args ...any) {
    	panic(fmt.Sprintf(format, args...))
    }
    
    // deltaNewFile is a magic line delta offset indicating a new file.
    // We use -64 because it is rare; see issue 20080 and CL 41619.
    // -64 is the smallest int that fits in a single byte as a varint.
    const deltaNewFile = -64
    
    // Synthesize a token.Pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top