Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for oH (0.04 sec)

  1. src/cmd/link/internal/ld/ld_test.go

    	}
    
    	f, err := pe.Open(objfile)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer f.Close()
    	var dc uint16
    	switch oh := f.OptionalHeader.(type) {
    	case *pe.OptionalHeader32:
    		dc = oh.DllCharacteristics
    	case *pe.OptionalHeader64:
    		dc = oh.DllCharacteristics
    		hasHEVA := (dc & pe.IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA) != 0
    		if useASLR && !hasHEVA {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    sure I can't be Mabel, for I know all sorts of things, and she,
    oh! she knows such a very little!  Besides, SHE'S she, and I'm I,
    and--oh dear, how puzzling it all is!  I'll try if I know all the
    things I used to know.  Let me see:  four times five is twelve,
    and four times six is thirteen, and four times seven is--oh dear!
    I shall never get to twenty at that rate!  However, the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    sure I can't be Mabel, for I know all sorts of things, and she,
    oh! she knows such a very little!  Besides, SHE'S she, and I'm I,
    and--oh dear, how puzzling it all is!  I'll try if I know all the
    things I used to know.  Let me see:  four times five is twelve,
    and four times six is thirteen, and four times seven is--oh dear!
    I shall never get to twenty at that rate!  However, the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. android/guava-testlib/test/com/google/common/util/concurrent/testing/TestingExecutorsTest.java

        Runnable runnable =
            new Runnable() {
              @Override
              public void run() {
                throw new RuntimeException("Oh no!");
              }
            };
    
        Future<?> future = TestingExecutors.sameThreadScheduledExecutor().submit(runnable);
        assertThrows(ExecutionException.class, () -> future.get());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/util/concurrent/testing/TestingExecutorsTest.java

        Runnable runnable =
            new Runnable() {
              @Override
              public void run() {
                throw new RuntimeException("Oh no!");
              }
            };
    
        Future<?> future = TestingExecutors.sameThreadScheduledExecutor().submit(runnable);
        assertThrows(ExecutionException.class, () -> future.get());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. src/debug/buildinfo/buildinfo.go

    type peExe struct {
    	f *pe.File
    }
    
    func (x *peExe) imageBase() uint64 {
    	switch oh := x.f.OptionalHeader.(type) {
    	case *pe.OptionalHeader32:
    		return uint64(oh.ImageBase)
    	case *pe.OptionalHeader64:
    		return oh.ImageBase
    	}
    	return 0
    }
    
    func (x *peExe) ReadData(addr, size uint64) ([]byte, error) {
    	addr -= x.imageBase()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/generate.txt

    -- generate/flag.go --
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test -run flag
    
    //go:generate echo oh yes my man
    //go:generate echo no, no, a thousand times no
    
    package p
    -- generate/env_test.go --
    package main_test
    
    //go:generate echo $GOPACKAGE
    -- generate/env_pwd.go --
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. src/compress/flate/dict_decoder_test.go

    			"Though as for that the passing there\n" +
    			"Had worn them really about the same,\n" +
    			"\n" +
    			"And both that morning equally lay\n" +
    			"In leaves no step had trodden black.\n" +
    			"Oh, I kept the first for another day!\n" +
    			"Yet knowing how way leads on to way,\n" +
    			"I doubted if I should ever come back.\n" +
    			"\n" +
    			"I shall be telling this with a sigh\n" +
    			"Somewhere ages and ages hence:\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 28 10:36:01 UTC 2016
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    	k, _ := maxpow2(hi - lo)
    	if n <= lo+k {
    		oh, th, err := runTreeProof(p[:len(p)-1], lo, lo+k, n, old)
    		if err != nil {
    			return Hash{}, Hash{}, err
    		}
    		return oh, NodeHash(th, p[len(p)-1]), nil
    	} else {
    		oh, th, err := runTreeProof(p[:len(p)-1], lo+k, hi, n, old)
    		if err != nil {
    			return Hash{}, Hash{}, err
    		}
    		return NodeHash(p[len(p)-1], oh), NodeHash(p[len(p)-1], th), nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TestKitIntegrationTest.kt

                                myExtension.say.set("Hi!")
    
                                myExtension {
                                    say = "Oh!"
                                }
                            ""${'"'})
    
                        GradleRunner
                            .create()
                            .withProjectDir(projectDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 10:30:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top