Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for emberi (0.32 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //     GTEST_OS_WINDOWS_MOBILE   - Windows Mobile
    //   GTEST_OS_ZOS      - z/OS
    //
    // Among the platforms, Cygwin, Linux, macOS, and Windows have the
    // most stable support.  Since core members of the Google Test project
    // don't have access to other platforms, support for them may be less
    // stable.  If you notice any problems on your platform, please notify
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. src/time/time.go

    	return absClock(t.abs())
    }
    
    // absClock is like clock but operates on an absolute time.
    //
    // absClock should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname absClock
    func absClock(abs uint64) (hour, min, sec int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

         * resource is a normal disk file directory,
         * <li>all available NetBIOS workgroups or domains if this resource is
         * the top level URL <code>smb://</code>,
         * <li>all servers registered as members of a NetBIOS workgroup if this
         * resource refers to a workgroup in a <code>smb://workgroup/</code> URL,
         * <li>all browseable shares of a server including printers, IPC
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/runtime/mgc.go

    // If you change the first four bytes, you must also change the write
    // barrier insertion code.
    //
    // writeBarrier should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname writeBarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    	// podStoreSynced returns true if the pod store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	podStoreSynced cache.InformerSynced
    	// jobStoreSynced returns true if the job store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	jobStoreSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    The following _Java Object Serialization_ features are **not** supported:
    
    - the `serialPersistentFields` member to explicitly declare which fields are serializable; the member, if present, is ignored; the configuration cache considers all but `transient` fields serializable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    		if e != nil {
    			return "", e
    		}
    		if l <= n {
    			return UTF16ToString(b[:l]), nil
    		}
    		n = l
    	}
    }
    
    // IsMember reports whether the access token t is a member of the provided SID.
    func (t Token) IsMember(sid *SID) (bool, error) {
    	var b int32
    	if e := checkTokenMembership(t, sid, &b); e != nil {
    		return false, e
    	}
    	return b != 0, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

      def setUp(self) -> None:
        super().setUp()
    
        # Many test cases for quantization involve creating and saving the input
        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
        # respectively. These paths will be cleaned up after each test case.
        self._input_saved_model_path = self.create_tempdir('input').full_path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                isImplicitInvoke = true
    
                // For implicit invoke, the explicit receiver is always set in FIR and this receiver is the variable or property that has
                // the `invoke` member function. In this case, we use the `calleeExpression` in the `KtCallExpression` as the PSI
                // representation of this receiver. Caller can then use this PSI for further call resolution, which is implemented by the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        private fun List<OverloadCandidate>.findScopeForSymbol(symbol: FirBasedSymbol<*>): FirScope? = firstOrNull {
            it.candidate.symbol == symbol
        }?.candidate?.originScope
    
        /**
         * Returns whether a member of companion is used to initialize the enum entry or not. For example,
         *     enum class C(val i: Int) {
         *         ONE(<expr>C.K</expr>)  // C.ONE uses C.K for initialization
         *         ;
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top