Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for some_value (0.16 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

               (ValueEquals<"0.5"> $half),
               (ValueEquals<"0.5"> $half1),
               (ValueEquals<"0.5"> $half2),
               (SameValue $floor, $floor1),
               (SameValue $floor, $floor2),
               (SameValue $floor, $floor3),
               (SameValue $frac, $frac1),
               (FloatOrDefaultCompare $compare_type0),
               (FloatOrDefaultCompare $compare_type1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            when:
            project.ext.somename = 'somevalue'
            then:
            project.inheritedScope.hasProperty('somename')
            project.inheritedScope.getProperty('somename') == 'somevalue'
        }
    
        def conventionPropertiesAreInheritable() {
            when:
            project.convention.plugins.test = new TestConvention()
            project.convention.plugins.test.conv = 'somevalue'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    Gradle can also set project properties when it sees specially-named system properties or environment variables.
    If the environment variable name looks like `ORG_GRADLE_PROJECT___prop__=somevalue`, then Gradle will set a `prop` property on your project object, with the value of `somevalue`.
    Gradle also supports this for system properties, but with a different naming pattern, which looks like `org.gradle.project.__prop__`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlayTest.kt

            var x: Int
    
            @get: Restricted
            var y: Int
    
            @Configuring
            fun configuring(configure: NestedReceiver.() -> Unit)
    
            @Adding
            fun adding(someValue: Int, configure: NestedReceiver.() -> Unit): NestedReceiver
    
            @Restricted
            fun myInt(): Int
        }
    
        interface NestedReceiver {
            @get:Restricted
            var a: Int
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ComponentMetadataDetailsAdapterTest.groovy

        def componentIdentifier = DefaultModuleComponentIdentifier.newId(versionIdentifier)
        def testAttribute = Attribute.of("someAttribute", String)
        def attributes = AttributeTestUtil.attributesFactory().of(testAttribute, "someValue")
        def schema = new DefaultAttributesSchema(TestUtil.instantiatorFactory(), SnapshotTestUtil.isolatableFactory())
        def ivyMetadataFactory = DependencyManagementTestUtil.ivyMetadataFactory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            buildKotlinFile << """
                tasks.register("printer") {
                    val someValue = objects.property<String>().convention("some value")
                    doLast {
                        val filtered = someValue.filter { it.contains("value") }
                        someValue.set("trash")
                        println("filter: ${'$'}{filtered.getOrNull()}")
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/loader.cc

    static Status ValidateNode(const NodeDef& node) {
      const auto node_iterator = node.attr().find("value");
      if (node_iterator != node.attr().end()) {
        AttrValue node_value = node_iterator->second;
        if (node_value.has_tensor()) {
          const PartialTensorShape node_shape(node_value.tensor().tensor_shape());
          if (node_shape.num_elements() < 0) {
            return absl::FailedPreconditionError(absl::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. cmd/signature-v4-utils_test.go

    		{"", "", "X-Amz-Credential", "", true},
    
    		// Test case - 5.
    		// Enabling PreSigned Signature v4, but X-Amz-Content-Sha256 set and its not UNSIGNED-PAYLOAD, we shouldn't skip.
    		{"X-Amz-Content-Sha256", "somevalue", "X-Amz-Credential", "", false},
    
    		// Test case - 6.
    		// Test case with "X-Amz-Content-Sha256" header set to  "UNSIGNED-PAYLOAD" and its not presigned, we should skip.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/VariantFilesMetadataRulesTest.groovy

        @Shared componentIdentifier = DefaultModuleComponentIdentifier.newId(versionIdentifier)
        @Shared attributes = AttributeTestUtil.attributesFactory().of(Attribute.of("someAttribute", String), "someValue")
        @Shared mavenMetadataFactory = DependencyManagementTestUtil.mavenMetadataFactory()
        @Shared ivyMetadataFactory = DependencyManagementTestUtil.ivyMetadataFactory()
        @Shared defaultVariant
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractDependencyMetadataRulesTest.groovy

        @Shared
            componentIdentifier = DefaultModuleComponentIdentifier.newId(versionIdentifier)
        @Shared
            attributes = AttributeTestUtil.attributesFactory().of(Attribute.of("someAttribute", String), "someValue")
        @Shared
            schema = createSchema()
        @Shared
            mavenMetadataFactory = DependencyManagementTestUtil.mavenMetadataFactory()
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:39:10 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top