Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 266 for umagic (0.11 sec)

  1. src/syscall/zsyscall_linux_s390x.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(arg)
    	if err != nil {
    		return
    	}
    	_, _, e1 := Syscall6(SYS_REBOOT, uintptr(magic1), uintptr(magic2), uintptr(cmd), uintptr(unsafe.Pointer(_p0)), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  2. pkg/test/echo/cmd/client/main.go

    		"do not verify TLS")
    	rootCmd.PersistentFlags().BoolVar(&serverFirst, "server-first", false,
    		"Treat as a server first protocol; do not send request until magic string is received")
    	rootCmd.PersistentFlags().BoolVarP(&followRedirects, "follow-redirects", "L", false,
    		"If enabled, will follow 3xx redirects with the Location header")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_linux_386.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(arg)
    	if err != nil {
    		return
    	}
    	_, _, e1 := Syscall6(SYS_REBOOT, uintptr(magic1), uintptr(magic2), uintptr(cmd), uintptr(unsafe.Pointer(_p0)), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 34.7K bytes
    - Viewed (0)
  4. test-site/activator.bat

      set arg1=%~1
      if "!arg1:~0,2!"=="-D" (
       	set "args=%args% "%~1"="%~2""
        shift
        shift
        goto argsloop
      )
    
      if "%~1"=="-jvm-debug" (
        if not "%~2"=="" (
          rem This piece of magic somehow checks that an argument is a number
          for /F "delims=0123456789" %%i in ("%~2") do (
            set var="%%i"
          )
          if defined var (
            rem Not a number, assume no argument given and default to 9999
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  5. src/compress/bzip2/huffman.go

    // is a left node and its value is in leftValue/rightValue.
    //
    // The symbols are uint16s because bzip2 encodes not only MTF indexes in the
    // tree, but also two magic values for run-length encoding and an EOF symbol.
    // Thus there are more than 256 possible symbols.
    type huffmanNode struct {
    	left, right           uint16
    	leftValue, rightValue uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/DefaultMavenModuleResolveMetadata.java

                dependencies,
                packaging,
                relocated,
                snapshotTimestamp);
        }
    
        /**
         * Adapts a MavenDependencyDescriptor to `DependencyMetadata` for the magic "optional" configuration.
         *
         * This configuration has special semantics:
         * - Dependencies in the "optional" configuration are _never_ themselves optional (ie not 'pending')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. cmd/bitrot.go

    	"github.com/minio/highwayhash"
    	"github.com/minio/minio/internal/hash/sha256"
    	"golang.org/x/crypto/blake2b"
    
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    )
    
    // magic HH-256 key as HH-256 hash of the first 100 decimals of π as utf-8 string with a zero key.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/sql-databases-peewee.md

    And `threading.local` is not compatible with the new async features of modern Python.
    
    !!! note "Technical Details"
        `threading.local` is used to have a "magic" variable that has a different value for each thread.
    
        This was useful in older frameworks designed to have one single thread per request, no more, no less.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_mips64.go

    	Regs        [102]uint64
    	U_tsize     uint64
    	U_dsize     uint64
    	U_ssize     uint64
    	Start_code  uint64
    	Start_data  uint64
    	Start_stack uint64
    	Signal      int64
    	U_ar0       uint64
    	Magic       uint64
    	U_comm      [32]int8
    }
    
    type FdSet struct {
    	Bits [16]int64
    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <linux/input.h>
    #include <linux/kcm.h>
    #include <linux/kexec.h>
    #include <linux/keyctl.h>
    #include <linux/landlock.h>
    #include <linux/loop.h>
    #include <linux/lwtunnel.h>
    #include <linux/magic.h>
    #include <linux/memfd.h>
    #include <linux/module.h>
    #include <linux/mount.h>
    #include <linux/netfilter/nfnetlink.h>
    #include <linux/netfilter/nf_tables.h>
    #include <linux/netlink.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top