Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for typeName (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

                        });
                    }
    
                    public static abstract class Extension {
                        private $typeName value;
                        public $typeName getInputProperty() { return value; }
                        public void setInputProperty($typeName value) { this.value = value; }
                    }
    
                    public static abstract class SomeTask extends ${ConventionTask.name} {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

            private static class WorkerClassRemapper extends Remapper {
                @Override
                public String map(String typeName) {
                    if (typeName.startsWith("org/gradle/")) {
                        return "worker/" + typeName;
                    }
                    return typeName;
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                    'Use a RegularFile instance',
                    'Use a URI or URL instance',
                    'Use a TextResource instance',
                ]
                additionalData.asMap == [
                    'typeName': 'org.gradle.api.DefaultTask',
                    'propertyName': 'input',
                ]
            }
    
            where:
            method | targetType
            "dir"  | "directory"
            "file" | "file"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

            // We assume different types won't ever produce identical display names
            if (reportedValueSources.add(displayName ?: typeName)) {
                reportValueSourceInput(trace, displayName, typeName)
            }
        }
    
        private
        fun reportValueSourceInput(trace: PropertyTrace, displayName: String?, typeName: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanPropertyWriter.kt

            bean.uncheckedCast<IConventionAware>()
                .conventionMapping
                .getConventionValue<Any?>(fieldValue, field.name, false)
    
        private
        fun Field.debugFrameName() =
            "${declaringClass.typeName}.$name"
    
        private
        fun Any?.isAssignableTo(type: Class<*>) =
            (if (type.isPrimitive) wrap(type) else type)
                .isInstance(this)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/JavaRecordCodec.kt

                unsupportedFieldTypeFor(field)?.let {
                    reportUnsupportedFieldType(it, "serialize", fieldName, fieldValue)
                }
                withDebugFrame({ "${clazz.typeName}.$fieldName" }) {
                    writeNextProperty(fieldName, fieldValue, PropertyKind.Field)
                }
            }
        }
    }
    
    
    private
    val Class<*>.relevantFields: List<Field>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. schema/relationship.go

    	polymorphic := field.TagSettings["POLYMORPHIC"]
    
    	relation.Polymorphic = &Polymorphic{
    		Value: schema.Table,
    	}
    
    	var (
    		typeName = polymorphic + "Type"
    		typeId   = polymorphic + "ID"
    	)
    
    	if value, ok := field.TagSettings["POLYMORPHICTYPE"]; ok {
    		typeName = strings.TrimSpace(value)
    	}
    
    	if value, ok := field.TagSettings["POLYMORPHICID"]; ok {
    		typeId = strings.TrimSpace(value)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // The reduce_element_type is guaranteed to be a float, int, or complex type
    // suitable for use with GetScalarConstOfType or GetScalarLimitConstOfType.
    template <typename Derived, typename OpTy, typename ReductionOp,
              bool is_accumulation = true>
    class GenericConvertReductionOp : public OpRewritePattern<OpTy> {
      using OpRewritePattern<OpTy>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. pkg/kube/krt/informer.go

    func WrapClient[I controllers.ComparableObject](c kclient.Informer[I], opts ...CollectionOption) Collection[I] {
    	o := buildCollectionOptions(opts...)
    	if o.name == "" {
    		o.name = fmt.Sprintf("NewInformer[%v]", ptr.TypeName[I]())
    	}
    	h := &informer[I]{
    		inf:            c,
    		log:            log.WithLabels("owner", o.name),
    		collectionName: o.name,
    		id:             nextUID(),
    		eventHandlers:  &handlers[I]{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          ArrayRef<Value>({size_leading_dim, partial_size}));
    
      return rewriter->create<TF::SliceOp>(loc, result_type, input_list,
                                           start_position, slice_size);
    }
    
    template <typename OpT>
    class TensorListOpConverterBase : public OpConversionPattern<OpT> {
     public:
      explicit TensorListOpConverterBase<OpT>(MLIRContext *context,
                                              bool allow_tensorlist_pass_through,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top