Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 189 for umagic (0.1 sec)

  1. src/debug/buildinfo/buildinfo.go

    		mod = mod[16 : len(mod)-16]
    	} else {
    		mod = ""
    	}
    
    	return vers, mod, nil
    }
    
    func hasPlan9Magic(magic []byte) bool {
    	if len(magic) >= 4 {
    		m := binary.BigEndian.Uint32(magic)
    		switch m {
    		case plan9obj.Magic386, plan9obj.MagicAMD64, plan9obj.MagicARM:
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. cmd/kubelet/app/plugins.go

    	allPlugins := []volume.VolumePlugin{}
    
    	// The list of plugins to probe is decided by the kubelet binary, not
    	// by dynamic linking or other "magic".  Plugins will be analyzed and
    	// initialized later.
    	//
    	// Kubelet does not currently need to configure volume plugins.
    	// If/when it does, see kube-controller-manager/app/plugins.go for example of using volume.VolumeConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

      private fun readJournal() {
        fileSystem.read(journalFile) {
          val magic = readUtf8LineStrict()
          val version = readUtf8LineStrict()
          val appVersionString = readUtf8LineStrict()
          val valueCountString = readUtf8LineStrict()
          val blank = readUtf8LineStrict()
    
          if (MAGIC != magic ||
            VERSION_1 != version ||
            appVersion.toString() != appVersionString ||
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  4. src/io/fs/glob.go

    		if err != nil {
    			return m, err
    		}
    		if matched {
    			m = append(m, path.Join(dir, n))
    		}
    	}
    	return
    }
    
    // hasMeta reports whether path contains any of the magic characters
    // recognized by path.Match.
    func hasMeta(path string) bool {
    	for i := 0; i < len(path); i++ {
    		switch path[i] {
    		case '*', '?', '[', '\\':
    			return true
    		}
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:25:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiConnection.groovy

     * While still allowing the ToolingApiConnection to be used as a ProjectConnection.
     * This avoids loading the ProjectConnection class from the test code and postbones loading to the tooling api magic.
     */
    
    trait ProjectConnectionTrait implements ProjectConnection {
    }
    
    class ToolingApiConnection {
        private final Object projectConnection
        private final OutputStream stderr
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  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