- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 14 for UNIMPLEMENTED (0.04 seconds)
-
fuzzing/fuzzingserver-expected.txt
"12.1.9 UNIMPLEMENTED" "12.2.1 UNIMPLEMENTED" "12.2.10 UNIMPLEMENTED" "12.2.11 UNIMPLEMENTED" "12.2.12 UNIMPLEMENTED" "12.2.13 UNIMPLEMENTED" "12.2.14 UNIMPLEMENTED" "12.2.15 UNIMPLEMENTED" "12.2.16 UNIMPLEMENTED" "12.2.17 UNIMPLEMENTED" "12.2.18 UNIMPLEMENTED" "12.2.2 UNIMPLEMENTED" "12.2.3 UNIMPLEMENTED" "12.2.4 UNIMPLEMENTED" "12.2.5 UNIMPLEMENTED" "12.2.6 UNIMPLEMENTED" "12.2.7 UNIMPLEMENTED" "12.2.8 UNIMPLEMENTED"
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue Mar 26 02:01:32 GMT 2019 - 6.7K bytes - Click Count (1) -
tensorflow/c/c_api.cc
TF_WhileParams TF_NewWhile(TF_Graph* g, TF_Output* inputs, int ninputs, TF_Status* status) { #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD) status->status = tensorflow::errors::Unimplemented( "Creating while loops is not supported on mobile. File a bug at " "https://github.com/tensorflow/tensorflow/issues if this feature is " "important to you"); return EmptyWhileParams(); #else
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Sat Oct 04 05:55:32 GMT 2025 - 102.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/com/SmbComQueryInformationTest.java
void testReadBytesWireFormatNoop() { byte[] buffer = new byte[10]; int used = cmd.readBytesWireFormat(buffer, 0); assertEquals(0, used, "readBytesWireFormat is unimplemented and must return 0"); } private static byte[] subArray(byte[] src, int offset, int length) { byte[] dst = new byte[length]; System.arraycopy(src, offset, dst, 0, length);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 4.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java
break; case Smb2Constants.SMB2_DIALECT_0300: case Smb2Constants.SMB2_DIALECT_0302: this.signingKey = Smb3KeyDerivation.deriveSigningKey(dialect, sessionKey, new byte[0] /* unimplemented */); this.algorithmName = "AESCMAC"; this.provider = Crypto.getProvider(); break; case Smb2Constants.SMB2_DIALECT_0311: if (preauthIntegrityHash == null) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 9.9K bytes - Click Count (0) -
impl/maven-core/src/site/apt/offline-mode.apt
repositories are "really" offline, since offline mode is more of a behavior, and this will lead to counter-intuitive results. A different feature may exist unimplemented, which is to detect when the network is down and provide better feedback for that case. However, when offline mode is declared, nothing earmarked as remote should be accessed, regardless of whether it is actually
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 10.6K bytes - Click Count (0) -
guava/src/com/google/common/reflect/Types.java
* getAnnotatedBounds()} method, then its return type means it won't compile on Android, while if * we don't include the method, then the compiler will complain that an abstract method is * unimplemented. So instead we use a dynamic proxy to get an implementation. If the method being * called on the {@code TypeVariable} instance has the same name as one of the public methods of
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Oct 31 19:34:24 GMT 2025 - 24.3K bytes - Click Count (0) -
tensorflow/c/c_api_experimental.cc
TF_Library* TF_LoadPluggableDeviceLibrary(const char* library_filename, TF_Status* status) { #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD) status->status = tensorflow::errors::Unimplemented( "PluggableDevice plugin functionality is not supported on mobile"); return nullptr; #else TF_Library* lib_handle = new TF_Library; static tensorflow::mutex mu(tensorflow::LINKER_INITIALIZED);
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Sat Oct 04 05:55:32 GMT 2025 - 29.4K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/Types.java
* getAnnotatedBounds()} method, then its return type means it won't compile on Android, while if * we don't include the method, then the compiler will complain that an abstract method is * unimplemented. So instead we use a dynamic proxy to get an implementation. If the method being * called on the {@code TypeVariable} instance has the same name as one of the public methods of
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Oct 31 19:34:24 GMT 2025 - 24.3K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Converter.java
* @return the converted instance; <b>must not</b> be null * @throws UnsupportedOperationException if backward conversion is not implemented; this should be * very rare. Note that if backward conversion is not only unimplemented but * unimplement<i>able</i> (for example, consider a {@code Converter<Chicken, ChickenNugget>}), * then this is not logically a {@code Converter} at all, and should just implement {@link * Function}.
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Jun 18 21:43:06 GMT 2025 - 22.8K bytes - Click Count (0) -
src/cmd/asm/internal/asm/parse.go
} else { r1, r2, scale, ok = p.register(tok.String(), 0) if !ok { p.errorf("indirect through non-register %s", tok) } if r2 != 0 { p.errorf("unimplemented two-register form") } a.Index = r1 if scale != 0 && scale != 1 && (p.arch.Family == sys.ARM64 || p.arch.Family == sys.PPC64) { // Support (R1)(R2) (no scaling) and (R1)(R2*1).Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Nov 12 03:59:40 GMT 2025 - 37.3K bytes - Click Count (0)