Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 566 for substituted (0.19 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-substitutionRule/kotlin/build.gradle.kts

    val conf by configurations.creating
    
    // tag::module_to_project_substitution[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(module("org.utils:api"))
                .using(project(":api")).because("we work with the unreleased development version")
            substitute(module("org.utils:util:2.5")).using(project(":util"))
        }
    }
    // end::module_to_project_substitution[]
    // tag::project_to_module_substitution[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-substitutionRule/groovy/build.gradle

            substitute module("org.utils:api") using project(":api") because "we work with the unreleased development version"
            substitute module("org.utils:util:2.5") using project(":util")
        }
    }
    // end::module_to_project_substitution[]
    // tag::project_to_module_substitution[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 754 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-attributeSubstitutionRule/groovy/consumer/build.gradle

    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(platform(module('com.google.guava:guava:28.2-jre'))).
                using module('com.google.guava:guava:28.2-jre')
        }
    }
    // end::substitution_rule[]
    
    // tag::substitution_rule_alternative[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute variant(module('com.google.guava:guava:28.2-jre')) {
                attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-attributeSubstitutionRule/kotlin/consumer/build.gradle.kts

    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(platform(module("com.google.guava:guava:28.2-jre")))
                .using(module("com.google.guava:guava:28.2-jre"))
        }
    }
    // end::substitution_rule[]
    
    // tag::substitution_rule_alternative[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(variant(module("com.google.guava:guava:28.2-jre")) {
                attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top