Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 566 for substituted (0.16 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

    }
    
    string AttrView::InputArg(bool with_default_value) const {
      string default_value = DefaultValue();
      if (!with_default_value || default_value.empty()) {
        return absl::Substitute("$0 $1", VariableType(), attr_.name());
      }
      return absl::Substitute("$0 $1 = $2", VariableType(), attr_.name(),
                              default_value);
    }
    
    string AttrView::SetterMethod() const {
      if (!attr_.is_list()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompletionCandidateChecker.kt

            public abstract val substitutor: KaSubstitutor
        }
    
        public class ApplicableAsExtensionCallable(
            substitutor: KaSubstitutor,
            receiverCastRequired: Boolean,
            override val token: KaLifetimeToken
        ) : Applicable() {
            override val substitutor: KaSubstitutor by validityAsserted(substitutor)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactSelectionDetails.java

     * original dependency requested artifacts, if any, and gives the opportunity to
     * replace the original requested artifacts with other artifacts.
     *
     * This can typically be used whenever you need to substitute a dependency with
     * uses a classifier to a non-classified dependency, or the other way around.
     *
     * @since 6.6
     */
    public interface ArtifactSelectionDetails {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

    #include <utility>
    #include <vector>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/log/log.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/substitute.h"
    #include "tensorflow/cc/framework/cc_op_gen_util.h"
    #include "tensorflow/core/framework/api_def.pb.h"
    #include "tensorflow/core/framework/op_def.pb.h"
    #include "tensorflow/core/framework/op_def_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.cc

    ==============================================================================*/
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    
    #include "absl/strings/str_cat.h"
    #include "absl/strings/substitute.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/core/lib/strings/str_util.h"
    #include "tensorflow/core/platform/logging.h"
    #include "tensorflow/core/platform/stringpiece.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/graal/GraalSvm.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.graal
    
    import com.oracle.svm.core.annotate.Delete
    import com.oracle.svm.core.annotate.Substitute
    import com.oracle.svm.core.annotate.TargetClass
    import okhttp3.internal.platform.Android10Platform
    import okhttp3.internal.platform.AndroidPlatform
    import okhttp3.internal.platform.BouncyCastlePlatform
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 07 16:05:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesAndProjectDependencySubstitutionIntegrationTest.groovy

            buildFile << """
    project(':child1') {
        dependencies {
            conf 'org.test:maven:1.0'
        }
        configurations.conf.resolutionStrategy.dependencySubstitution {
            substitute module('org.test:replaced:1.0') using project(':child2')
        }
    }
    project(':child2') {
        configurations {
            compile
            runtime
            master
            other
            create("default")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-capabilitySubstitutionRule/groovy/build.gradle

    plugins {
        id 'java-library'
    }
    
    dependencies {
        implementation 'com.acme:lib:1.0'
    }
    
    // tag::substitution_rule[]
    configurations.testCompileClasspath {
        resolutionStrategy.dependencySubstitution {
            substitute(module('com.acme:lib:1.0'))
                .using variant(module('com.acme:lib:1.0')) {
                capabilities {
                    requireCapability('com.acme:lib-test-fixtures')
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 650 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VariantSelectionDetails.java

    import org.gradle.api.attributes.AttributeContainer;
    
    /**
     * Allows configuring the variant-aware selection aspects of a specific
     * dependency. This includes the ability to substitute a dependency on
     * a platform with another platform, or substitute a dependency without
     * attributes with a dependency with attributes.
     *
     * @since 6.6
     */
    public interface VariantSelectionDetails {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.h"
    
    #include <iterator>
    
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/substitute.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/op_implementation_renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top