Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 186 for substituted (0.28 sec)

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

            }
    
            fun buildSubstitutor(substitutor: ConeSubstitutor): KaSubstitutor {
                if (substitutor == ConeSubstitutor.Empty) return KaSubstitutor.Empty(token)
                return when (substitutor) {
                    is ConeSubstitutorByMap -> KaFirMapBackedSubstitutor(substitutor, this@KaSymbolByFirBuilder)
                    is ChainedSubstitutor -> KaFirChainedSubstitutor(substitutor, this@KaSymbolByFirBuilder)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

                val nameCanBeDeclaredInAnnotation = symbol.psi == null
    
                runIf(nameCanBeDeclaredInAnnotation) { getValueFromParameterNameAnnotation() } ?: symbol.name
            }
    
        abstract override fun substitute(substitutor: KaSubstitutor): KaVariableLikeSignature<S>
    
        private fun getValueFromParameterNameAnnotation(): Name? {
            val resultingAnnotation = findParameterNameAnnotation() ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirSubstitutor.kt

    }
    
    internal class KaFirGenericSubstitutor(
        substitutor: ConeSubstitutor,
        builder: KaSymbolByFirBuilder,
    ) : AbstractKaFirSubstitutor<ConeSubstitutor>(substitutor, builder)
    
    @OptIn(KaAnalysisApiInternals::class)
    internal class KaFirMapBackedSubstitutor(
        substitutor: ConeSubstitutorByMap,
        builder: KaSymbolByFirBuilder,
    ) : AbstractKaFirSubstitutor<ConeSubstitutorByMap>(substitutor, builder,), KaMapBackedSubstitutor {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

        return CodeLines(absl::Substitute(text, args...));
      }
    
      // Indent and append a C++ statement.
      // Note: do *not* include a trailing semicolon in the statement text.
      Renderer &Statement(const string &text);
      template <typename... Args>
      Renderer Statement(absl::string_view text, const Args &...args) {
        return Statement(absl::Substitute(text, args...));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                boolean transitive = (transitiveValue == null) || Boolean.parseBoolean(transitiveValue);
    
                String name = substitute(attributes.getValue("name"));
                String branch = substitute(attributes.getValue("branch"));
                String branchConstraint = substitute(attributes.getValue("branchConstraint"));
                String rev = substitute(attributes.getValue("rev"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. ChangeLog.md

    - [`KT-65571`](https://youtrack.jetbrains.com/issue/KT-65571) Support VirtualFile inputs to Analysis API modules
    - [`KT-66485`](https://youtrack.jetbrains.com/issue/KT-66485) Substituted types are not provided for callable references
    - [`KT-66498`](https://youtrack.jetbrains.com/issue/KT-66498) Analysis API: 'KtFe10SymbolDeclarationOverridesProvider' considers a class to be a subclass of itself
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/common/view_util.cc

    #include "absl/strings/str_join.h"
    #include "absl/strings/substitute.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    string Call(const string& object, const string& method,
                std::vector<string> arguments, const char* oper) {
      return absl::Substitute("$0$1$2($3)", object, oper, method,
                              absl::StrJoin(arguments, ", "));
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/reparse_windows.go

    	// The integer that contains the offset, in bytes,
    	// of the substitute name string in the PathBuffer array,
    	// computed as an offset from byte 0 of PathBuffer. Note that
    	// this offset must be divided by 2 to get the array index.
    	SubstituteNameOffset uint16
    	// The integer that contains the length, in bytes, of the
    	// substitute name string. If this string is null-terminated,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 07:15:06 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/M2CompatibleIvyPatternHelper.groovy

    import org.apache.ivy.core.module.id.ModuleRevisionId
    
    class M2CompatibleIvyPatternHelper {
    
        static String substitute(String pattern, String organisation, String module, String revision, boolean m2Compatible) {
            def organisationToken = organisationToken(m2Compatible, organisation)
            IvyPatternHelper.substitute(pattern, new ModuleRevisionId(new ModuleId(organisationToken, module), revision))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.cc

    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    string OpArgumentView::Declaration() const {
      return absl::Substitute("$0 $1", type_name_, variable_name_);
    }
    
    string OpArgumentView::Initializer() const {
      if (default_value_.empty()) {
        return "";
      }
      return absl::Substitute(" = $0", default_value_);
    }
    
    bool OpArgumentView::HasDefaultValue() const { return !default_value_.empty(); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top