Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for MISC (0.07 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      }
    
      /**
       * {@link AtomicHelper} based on {@link sun.misc.Unsafe}.
       *
       * <p>Static initialization of this class will fail if the {@link sun.misc.Unsafe} object cannot
       * be accessed.
       */
      @SuppressWarnings({"SunApi", "removal"}) // b/345822163
      private static final class UnsafeAtomicHelper extends AtomicHelper {
        static final sun.misc.Unsafe UNSAFE;
        static final long LISTENERS_OFFSET;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      }
    
      /**
       * {@link AtomicHelper} based on {@link sun.misc.Unsafe}.
       *
       * <p>Static initialization of this class will fail if the {@link sun.misc.Unsafe} object cannot
       * be accessed.
       */
      @SuppressWarnings({"SunApi", "removal"}) // b/345822163
      private static final class UnsafeAtomicHelper extends AtomicHelper {
        static final sun.misc.Unsafe UNSAFE;
        static final long LISTENERS_OFFSET;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    include::sample[dir="snippets/files/misc/kotlin/project2",files="build.gradle.kts[tags=using-root-dir-property]"]
    include::sample[dir="snippets/files/misc/groovy/project2",files="build.gradle[tags=using-root-dir-property]"]
    ====
    
    Let's say you're working on a multi-project build in the directory: `dev/projects/AcmeHealth`. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    }
    
    func wrapperPathFor(goos, goarch string) string {
    	switch {
    	case goos == "android":
    		if gohostos != "android" {
    			return pathf("%s/misc/go_android_exec/main.go", goroot)
    		}
    	case goos == "ios":
    		if gohostos != "ios" {
    			return pathf("%s/misc/ios/go_ios_exec.go", goroot)
    		}
    	}
    	return ""
    }
    
    func goInstall(env []string, goBinary string, args ...string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. .bazelrc

    # See https://docs.microsoft.com/en-us/cpp/preprocessor/preprocessor-experimental-overview
    build:windows --copt=/Zc:preprocessor
    build:windows --host_copt=/Zc:preprocessor
    
    # Misc build options we need for windows.
    build:windows --linkopt=/DEBUG
    build:windows --host_linkopt=/DEBUG
    build:windows --linkopt=/OPT:REF
    build:windows --host_linkopt=/OPT:REF
    build:windows --linkopt=/OPT:ICF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    	{"17", "-100", "1234", "865"},
    	{"2", "-100", "1234", ""},
    
    	// m == 1
    	{"0", "0", "1", "0"},
    	{"1", "0", "1", "0"},
    	{"-10", "0", "1", "0"},
    	{"1234", "-1", "1", "0"},
    
    	// misc
    	{"5", "1", "3", "2"},
    	{"5", "-7", "", "1"},
    	{"-5", "-7", "", "1"},
    	{"5", "0", "", "1"},
    	{"-5", "0", "", "1"},
    	{"5", "1", "", "5"},
    	{"-5", "1", "", "-5"},
    	{"-5", "1", "7", "2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top