Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ownerProp (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

                list1 {
                    // owner properties and methods - owner is a DynamicOwner
                    dynamicProp = 'dynamicProp'
                    assert dynamicProp == 'dynamicProp'
                    assert ownerProp == 'ownerProp'
                    assert ownerMethod('ownerMethod') == 'ownerMethod'
                    assert dynamicMethod('a', 'b', 'c') == 'dynamicMethod'
                    assert dynamicMethod { doesntGetEvaluated } == 'dynamicMethod'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

          return failure();
        }
    
        Operation* owner_op;
        for (const auto& [attr, val] : attr_to_op_map) {
          if (attr.getName() == attribute.getName()) owner_op = val;
        }
        if (stablehlo::IsStablehloOp(owner_op)) {
          owner_op->setAttr(StringRef(attribute.getName()), attribute.getValue());
        } else {
          owner_op = attr_to_op_map[attribute];
    
          std::string new_attr_map_str{};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/result/ResolutionResultDataBuilder.groovy

            def mutableAttributes = AttributeTestUtil.attributesFactory().mutable()
            attributes.each {
                mutableAttributes.attribute(Attribute.of(it.key, String), it.value)
            }
            def ownerId = DefaultModuleComponentIdentifier.newId(
                newId(ownerGroup, ownerModule, ownerVersion)
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

        }
    
        private static DefaultResolvedVariantResult defaultVariant(String ownerGroup = 'com', String ownerModule = 'foo', String ownerVersion = '1.0') {
            def ownerId = DefaultModuleComponentIdentifier.newId(
                DefaultModuleVersionIdentifier.newId(ownerGroup, ownerModule, ownerVersion)
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

                    try {
                        ownerGroup.resolve(server, getContext());
                    }
                    catch ( IOException e ) {
                        log.warn("Failed to resolve SID " + ownerGroup.toString(), e);
                    }
                }
                else {
                    ownerGroup.initContext(server, getContext());
                }
                return ownerGroup;
            }
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top