Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,457 for otherfile (0.37 sec)

  1. android/guava/src/com/google/common/base/Platform.java

       * Returns the string if it is not null, or an empty string otherwise.
       *
       * @param string the string to test and possibly return
       * @return {@code string} if it is not null; {@code ""} otherwise
       */
      static String nullToEmpty(@CheckForNull String string) {
        return (string == null) ? "" : string;
      }
    
      /**
       * Returns the string if it is not empty, or a null string otherwise.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         * See docs for {@link ResolutionStrategy} for more info and examples.
         *
         * @implSpec Usage: This method should only be called on resolvable configurations, but will not warn if used otherwise.
         *
         * @return resolution strategy
         * @since 1.0-milestone-6
         */
        ResolutionStrategy getResolutionStrategy();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginRequest.java

         */
        PluginId getId();
    
        /**
         * The version of the plugin if one was specified, otherwise null.
         */
        @Nullable
        String getVersion();
    
        /**
         * The implementation module of the plugin if one was explicitly specified, otherwise null.
         */
        @Nullable
        ModuleVersionSelector getModule();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 31 12:25:03 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Platform.java

       * Returns the string if it is not null, or an empty string otherwise.
       *
       * @param string the string to test and possibly return
       * @return {@code string} if it is not null; {@code ""} otherwise
       */
      static String nullToEmpty(@CheckForNull String string) {
        return (string == null) ? "" : string;
      }
    
      /**
       * Returns the string if it is not empty, or a null string otherwise.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java

         */
        boolean isResolveManagedVersions();
    
        /**
         * Enables/disables resolution of the dependency management information.
         *
         * @param resolveManagedVersions {@code true} if the dependency management information should be retrieved, {@code
         *            false} otherwise.
         * @return This request, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

        @Deprecated
        Configuration resolvableDependencyScopeUnlocked(String name, Action<? super Configuration> action);
    
        /**
         * If a configuration with the given name already exists, return it.
         * Otherwise, creates a new resolvable configuration with the given name.
         *
         * If a configuration with this name already exists this method will <strong>overwrite</strong> its current usage to match what
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    }
    
    // new224 returns an assembly implementation of SHA3-224 if available,
    // otherwise it returns a generic implementation.
    func new224() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    		return newAsmState(sha3_224)
    	}
    	return new224Generic()
    }
    
    // new256 returns an assembly implementation of SHA3-256 if available,
    // otherwise it returns a generic implementation.
    func new256() hash.Hash {
    	if cpu.S390X.HasSHA3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompileTimeConstantProvider.kt

         */
        public fun KtExpression.evaluate(): KaConstantValue? =
            withValidityAssertion { analysisSession.compileTimeConstantProvider.evaluate(this) }
    
        /**
         * Returns a [KaConstantValue] if the expression evaluates to a value that can be used as an annotation parameter value,
         * e.g. an array of constants, otherwise returns null.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/common/utils.h

      if (llvm::isa<TFL::ConstOp, TFL::QConstOp>(op)) return false;
      return true;
    }
    
    // Returns true if 'op' is a terminator op, otherwise false.
    bool IsTerminatorOp(Operation* op);
    
    // Returns true if 'op' is not TFL Quant / Dequant op. Returns False otherwise
    // or if 'op' is null.
    bool NotTFLQuantDequantizeOp(Operation* op);
    
    // Returns true if it is a shaped type of f32 elements.
    inline bool IsF32ShapedType(Type t) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. pkg/test/env/variable.go

    }
    
    // ValueOrDefault returns the value of the environment variable if it is non-empty. Otherwise returns the value provided.
    func (e Variable) ValueOrDefault(defaultValue string) string {
    	return e.ValueOrDefaultFunc(func() string {
    		return defaultValue
    	})
    }
    
    // ValueOrDefaultFunc returns the value of the environment variable if it is non-empty. Otherwise returns the value function provided.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top