Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 169 for central (0.13 sec)

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

        } catch (Exception | Error unsafeFailure) { // sneaky checked exception
          thrownUnsafeFailure = unsafeFailure;
          // catch absolutely everything and fall through to our 'SafeAtomicHelper'
          // The access control checks that ARFU does means the caller class has to be AbstractFuture
          // instead of SafeAtomicHelper, so we annoyingly define these here
          try {
            helper =
                new SafeAtomicHelper(
    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. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebAuthenticationCQ.java

            return "web_authentication";
        }
    
        // ===================================================================================
        //                                                                       Query Control
        //                                                                       =============
        public void functionScore(OperatorCall<WebAuthenticationCQ> queryLambda,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 95.5K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    // protocol if it has not yet been run.
    //
    // Most uses of this package need not call Handshake explicitly: the
    // first [Conn.Read] or [Conn.Write] will call it automatically.
    //
    // For control over canceling or setting a timeout on a handshake, use
    // [Conn.HandshakeContext] or the [Dialer]'s DialContext method instead.
    //
    // In order to avoid denial of service attacks, the maximum RSA key size allowed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    	// Although SetCurrentDirectory and GetCurrentDirectory do support the "\\?\" prefix,
    	// some other Windows APIs don't. If the prefix is not removed here, it will leak
    	// to Getwd, and we don't want such a general-purpose function to always return a
    	// path with the "\\?\" prefix after Fchdir is called.
    	// The downside is that APIs that do support it will parse the path and try to normalize it,
    	// when it's already normalized.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. src/math/big/float_test.go

    		// prec at upper limit
    		{"0", MaxPrec, "0", Exact},
    		{"-0", MaxPrec, "-0", Exact},
    		{"-Inf", MaxPrec, "-Inf", Exact},
    		{"+Inf", MaxPrec, "+Inf", Exact},
    
    		// just a few regular cases - general rounding is tested elsewhere
    		{"1.5", 1, "2", Above},
    		{"-1.5", 1, "-2", Below},
    		{"123", 1e6, "123", Exact},
    		{"-123", 1e6, "-123", Exact},
    	} {
    		x := makeFloat(test.x).SetPrec(test.prec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    platform named 'current'. This default platform does not specify any `architecture` or `operatingSystem` value, hence using the default values of the first available tool chain.
    
    Gradle provides a _hook_ that allows the build author to control the exact set of arguments passed to a tool chain executable. This enables the build author to work around any limitations in Gradle, or assumptions that Gradle makes. The arguments hook should be seen as a 'last-resort' mechanism, with preference...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

        /**
         * This class is part of an attempt to provide the minimal functionality needed to script calling methods
         * which have a no-arg closure as their only parameter.
         *
         * TODO: Improve this to be more general, handle more statements than just method calls,
         * indent multi-statement closures properly, possibly handle args
         */
        private static class NoArgClosureExpression implements ExpressionValue {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    		switch {
    		case e.Type != nil:
    			// composite literal type present - use it
    			// [...]T array types may only appear with composite literals.
    			// Check for them here so we don't have to handle ... in general.
    			if atyp, _ := e.Type.(*syntax.ArrayType); atyp != nil && atyp.Len == nil {
    				// We have an "open" [...]T array type.
    				// Create a new ArrayType with unknown length (-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	// Calculate the CPU time spent.
    	//
    	// This may be slightly inaccurate with respect to GOMAXPROCS, but we're
    	// recomputing this often enough relative to GOMAXPROCS changes in general
    	// (it only changes when the world is stopped, and not during a GC) that
    	// that small inaccuracy is in the noise.
    	cpuFraction := worked / ((float64(slept) + worked) * float64(s.gomaxprocs()))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // any other Google Test header.
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
    
    // The user can define the following macros in the build script to
    // control Google Test's behavior.  If the user doesn't define a macro
    // in this list, Google Test will define it.
    //
    //   GTEST_HAS_CLONE          - Define it to 1/0 to indicate that clone(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top