Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for nulla (0.17 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

            if (psiElement !is KtExpression) return null
            if (firElement !is FirResolvedQualifier) return null
    
            val call = psiElement.getPossiblyQualifiedCallExpression() ?: return null
            if (call.typeArgumentList == null || call.valueArgumentList != null) return null
    
            val parentReferenceExpression = psiElement.parent as? KtDoubleColonExpression ?: return null
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/core/io/CopyUtil.java

         *
         * @param in
         *            入力ファイル。{@literal null}であってはいけません
         * @param inputEncoding
         *            入力ファイルのエンコーディング。{@literal null}や空文字列であってはいけません
         * @param out
         *            出力ファイル。{@literal null}であってはいけません
         * @param outputEncoding
         *            出力ファイルのエンコーディング。{@literal null}や空文字列であってはいけません
         * @return コピーした文字数
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 52.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

        }
      }
    
      /*
       * Preconditions.checkNotNull is *intended* for performing eager null checks on parameters that a
       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Feb 14 15:46:55 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    //
    // Any NULL and non-NULL value combinations for (`run_options`,
    // `run_metadata`) are valid.
    //
    //    - `run_options` may be NULL, in which case it will be ignored; or
    //      non-NULL, in which case it must point to a `TF_Buffer` containing the
    //      serialized representation of a `RunOptions` protocol buffer.
    //    - `run_metadata` may be NULL, in which case it will be ignored; or
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            final String value = getHttpFileuploadMaxSize();
            return value != null ? DfTypeUtil.toLong(value) : null;
        }
    
        String getHttpFileuploadThresholdSize();
    
        default Long getHttpFileuploadThresholdSizeAsLong() {
            final String value = getHttpFileuploadThresholdSize();
            return value != null ? DfTypeUtil.toLong(value) : null;
        }
    
        String getPasswordInvalidAdminPasswords();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Preconditions.java

        }
      }
    
      /*
       * Preconditions.checkNotNull is *intended* for performing eager null checks on parameters that a
       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Apr 11 11:52:14 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        node.thread = null; // mark as 'deleted'
        restart:
        while (true) {
          Waiter pred = null;
          Waiter curr = waiters;
          if (curr == Waiter.TOMBSTONE) {
            return; // give up if someone is calling complete
          }
          Waiter succ;
          while (curr != null) {
            succ = curr.next;
            if (curr.thread != null) { // we aren't unlinking this node, update pred.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

            return SmbEnumerationUtil.listFiles(this, "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, filter);
        }
    
    
        @Override
        public CloseableIterator<SmbResource> children () throws CIFSException {
            return SmbEnumerationUtil.doEnum(this, "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null);
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            if (providerUrl != null && providerUrl.startsWith("ldaps://")) {
                putEnv(env, Context.SECURITY_PROTOCOL, "ssl");
            }
            return env;
        }
    
        protected void putEnv(final Hashtable<String, String> env, final String key, final String value) {
            if (value == null) {
                throw new LdapConfigurationException(key + " is null.");
            }
            env.put(key, value);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        check(null !in (interceptors as List<Interceptor?>)) {
          "Null interceptor: $interceptors"
        }
        check(null !in (networkInterceptors as List<Interceptor?>)) {
          "Null network interceptor: $networkInterceptors"
        }
    
        if (connectionSpecs.none { it.isTls }) {
          check(sslSocketFactoryOrNull == null)
          check(certificateChainCleaner == null)
          check(x509TrustManager == null)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 04:21:33 GMT 2024
    - 52K bytes
    - Viewed (0)
Back to top