Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for ancestors (0.2 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/BuildScopeServices.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.accessors
    
    import org.gradle.api.internal.file.FileCollectionFactory
    import org.gradle.internal.execution.ExecutionEngine
    import org.gradle.internal.execution.InputFingerprinter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. build-logic/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import gradle.kotlin.dsl.accessors._25bd7e7076749e7e243da5bad7112e92.moduleIdentity
    import gradlebuild.basics.gradleProperty
    import org.gradle.api.publish.maven.MavenPublication
    
    plugins {
        id("publishing")
    }
    
    val artifactoryUrl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:58 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import gradlebuild.basics.accessors.kotlinMainSourceSet
    import gradlebuild.basics.util.ReproduciblePropertiesWriter
    import gradlebuild.kotlindsl.generator.tasks.GenerateKotlinDependencyExtensions
    
    plugins {
        id("gradlebuild.dependency-modules")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

         *  - Creation of a new declaration
         *  - Moving a declaration to another package
         *
         * Generally, all modifications which happen outside the body of a callable declaration (functions, accessors, or properties) with an
         * explicit type are considered **OOBM**.
         *
         * @see ModificationTracker
         */
        public abstract fun createProjectWideOutOfBlockModificationTracker(): ModificationTracker
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

        val className = mutableListOf<String>()
    
        while (current != null) {
            when (current) {
                is KtPropertyAccessor -> {
                    // Filter out property accessors
                }
                is KtCallableDeclaration, is KtEnumEntry -> {
                    if (!allowLocal) {
                        return null
                    }
                    localName += current.name ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/copyelim.go

    	for {
    		change := false
    		for _, b := range f.Blocks {
    			for _, v := range b.Values {
    				// This is an early place in SSA where all values are examined.
    				// Rewrite all 0-sized Go values to remove accessors, dereferences, loads, etc.
    				if t := v.Type; (t.IsStruct() || t.IsArray()) && t.Size() == 0 {
    					if t.IsStruct() {
    						v.reset(OpStructMake0)
    					} else {
    						v.reset(OpArrayMake0)
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/schemaFromGradleExtensions.kt

     * * Function extractors which introduce configuring functions for the extensions
     *
     * If object conversion is enabled ([ifConversionSupported]):
     * * Runtime custom accessors as the runtime counterpart for the configuring functions, telling the runtime how to access the extensions.
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/replicate_invariant_op_hoisting.cc

      StringAttr op_device = op->getAttrOfType<StringAttr>(kDeviceAttr);
      if (!op_device) return false;
      if (virtual_devices.get(op_device.getValue())) return true;
      return false;
    }
    
    // Check if op or its ancestor uses a key in `virtual_devices`.
    bool AncestorUsesVirtualDevice(
        const std::optional<DictionaryAttr>& virtual_devices, Operation* op) {
      if (!virtual_devices.has_value()) return false;
      if (!op) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirKotlinPropertySymbol.kt

            get() = withValidityAssertion {
                firSymbol.backingFieldSymbol?.let { builder.callableBuilder.buildBackingFieldSymbol(it) }
            }
    
        // NB: `field` in accessors indicates the property should have a backing field. To see that, though, we need BODY_RESOLVE.
        override val hasBackingField: Boolean
            get() = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec.cc

      absl::StatusOr<Method> method = GetQuantizationMethod(xla_call_module_op);
      if (method.ok() && method->has_static_range_ptq()) {
        // TODO: b/331145946 - Use `Method` accessors.
        const StaticRangePtq& static_range_ptq_spec = method->static_range_ptq();
        // Look for quantized dimension specs for each quantized type and
        // populate `coeff_op_quant_dim`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top