Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for null_type (0.21 sec)

  1. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/DataType.kt

     */
    
    package org.gradle.declarative.dsl.schema
    
    import org.gradle.tooling.ToolingModelContract
    import java.io.Serializable
    
    
    @ToolingModelContract(subTypes = [
        DataType.NullType::class,
        DataType.UnitType::class,
        DataType.ConstantType::class,
        DataType.IntDataType::class,
        DataType.LongDataType::class,
        DataType.StringDataType::class,
        DataType.BooleanDataType::class,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/utils.kt

        is DataType.IntDataType -> right is DataType.IntDataType
        is DataType.LongDataType -> right is DataType.LongDataType
        is DataType.StringDataType -> right is DataType.StringDataType
        is DataType.NullType -> right is DataType.NullType
        is DataType.UnitType -> right is DataType.UnitType
    }
    
    
    internal
    fun TypeRefContext.getDataType(objectOrigin: ObjectOrigin): DataType = when (objectOrigin) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/TypeMirrorToType.java

    import javax.lang.model.type.ErrorType;
    import javax.lang.model.type.ExecutableType;
    import javax.lang.model.type.IntersectionType;
    import javax.lang.model.type.NoType;
    import javax.lang.model.type.NullType;
    import javax.lang.model.type.PrimitiveType;
    import javax.lang.model.type.TypeKind;
    import javax.lang.model.type.TypeMirror;
    import javax.lang.model.type.TypeVariable;
    import javax.lang.model.type.UnionType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_unified_experimental_graph.cc

    #include "tensorflow/c/tf_datatype.h"
    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/c/tf_status_helper.h"
    #include "xla/tsl/c/tsl_status_internal.h"
    #include "tensorflow/core/framework/full_type.pb.h"
    #include "tensorflow/core/framework/shape_inference.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/llvm_rtti/llvm_rtti.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. tensorflow/c/python_api.cc

    #include "tensorflow/c/python_api.h"
    
    #include <string>
    
    #include "tensorflow/c/c_api_internal.h"
    #include "tensorflow/core/framework/cpp_shape_inference.pb.h"
    #include "tensorflow/core/framework/full_type.pb.h"
    
    namespace tensorflow {
    
    // Hack to export the tensorflow::RecordMutation symbol for windows.
    // Do not delete. Do not use.
    void ExportRecordMutation(  // NOLINT: Intentionally unused function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/DataTypeInternal.kt

            override fun toString(): String = "Boolean"
            private
            fun readResolve(): Any = DefaultBooleanDataType
        }
    
        @Serializable
        @SerialName("null")
        data object DefaultNullType : DataType.NullType {
            override fun toString(): String = "Null"
            private
            fun readResolve(): Any = DefaultNullType
        }
    
        @Serializable
        @SerialName("unit")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    	case cel.DoubleType:
    		return apiservercel.DoubleType
    	case cel.DurationType:
    		return apiservercel.DurationType
    	case cel.IntType:
    		return apiservercel.IntType
    	case cel.NullType:
    		return apiservercel.NullType
    	case cel.StringType:
    		return apiservercel.StringType
    	case cel.TimestampType:
    		return apiservercel.TimestampType
    	case cel.UintType:
    		return apiservercel.UintType
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. tensorflow/c/eager/abstract_tensor_handle.cc

      } else {
        shape_string = shape.DebugString();
      }
      return absl::StrCat("TensorHandle(shape=", shape_string,
                          ", dtype=", DataType_Name(DataType()),
                          ", type=", FullType().DebugString(), ")");
    }
    
    Status AbstractTensorHandle::TensorHandleStatus() const {
      // Tensor handles in current runtime don't carry error info and this method
      // should always return OK status.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/interface.go

    }
    
    func (v *AuditAnnotationCondition) GetExpression() string {
    	return v.ValueExpression
    }
    
    func (v *AuditAnnotationCondition) ReturnTypes() []*celgo.Type {
    	return []*celgo.Type{celgo.StringType, celgo.NullType}
    }
    
    // Variable is a named expression for composition.
    type Variable struct {
    	Name       string
    	Expression string
    }
    
    func (v *Variable) GetExpression() string {
    	return v.Expression
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 17:47:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. tensorflow/c/python_api.h

    #ifndef TENSORFLOW_C_PYTHON_API_H_
    #define TENSORFLOW_C_PYTHON_API_H_
    
    #include <string>
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/core/framework/full_type.pb.h"
    
    // These functions can be removed without notice. They exist to facilitate some
    // refactoring of graph construction code in the Python API.
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top