Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for arity (0.05 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10FunctionalType.kt

        override val isReflectType: Boolean
            get() = withValidityAssertion { descriptor.functionTypeKind.isReflectType }
    
        override val arity: Int
            get() = withValidityAssertion { descriptor.arity }
    
        override val hasContextReceivers: Boolean
            get() = withValidityAssertion { fe10Type.contextFunctionTypeParamsCount() > 0 }
    
        @OptIn(KaAnalysisApiInternals::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirFunctionalType.kt

        override val isReflectType: Boolean
            get() = withValidityAssertion { coneType.functionTypeKind(builder.rootSession)?.isReflectType == true }
    
        override val arity: Int get() = withValidityAssertion { parameterTypes.size }
    
        @OptIn(KaAnalysisApiInternals::class)
        override val contextReceivers: List<KaContextReceiver> by cached {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

    public abstract class KaFunctionalType : KaNonErrorClassType(), KaContextReceiversOwner {
        public abstract val isSuspend: Boolean
        public abstract val isReflectType: Boolean
        public abstract val arity: Int
        public abstract val hasContextReceivers: Boolean
        public abstract val receiverType: KaType?
        public abstract val hasReceiver: Boolean
        public abstract val parameterTypes: List<KaType>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseCastArity: {
    		Code:           "ParseCastArity",
    		Description:    "The SQL expression CAST has incorrect arity.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseInvalidTypeParam: {
    		Code:           "ParseInvalidTypeParam",
    		Description:    "The SQL expression contains an invalid parameter value.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                loc,
                rewriter.create<arith::AddIOp>(
                    loc, input_size,
                    rewriter.create<arith::SubIOp>(loc, stride_value, one)),
                stride_value);
            // std::max(int64{0}, (output_size - 1) * stride +
            //     effective_filter_size - input_size);
            Value padding_needed = rewriter.create<arith::SubIOp>(
                loc,
                rewriter.create<arith::AddIOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

    #include <gtest/gtest.h>
    #include "flatbuffers/buffer.h"  // from @flatbuffers
    #include "flatbuffers/flatbuffer_builder.h"  // from @flatbuffers
    #include "flatbuffers/string.h"  // from @flatbuffers
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/DialectRegistry.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/Extensions/AllExtensions.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. cmd/erasure-healing-common_test.go

    		parities := listObjectParities(metaArr, make([]error, len(metaArr)))
    		parity := commonParity(parities, 5)
    		var match int
    		for _, fi := range metaArr {
    			if fi.Erasure.ParityBlocks == parity {
    				match++
    			}
    		}
    		if match < len(metaArr)-parity {
    			t.Fatalf("Test %d: Expected %d drives with parity=%d, but got %d", idx, len(metaArr)-parity, parity, match)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

    #include "flatbuffers/flatbuffer_builder.h"  // from @flatbuffers
    #include "flatbuffers/string.h"  // from @flatbuffers
    #include "flatbuffers/vector.h"  // from @flatbuffers
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		// and never acceptable. Unlike the JSON serializer, inputs containing duplicate map
    		// keys are rejected outright and not surfaced as a strict decoding error.
    		DupMapKey: cbor.DupMapKeyEnforcedAPF,
    
    		// For JSON parity, decoding an RFC3339 string into time.Time needs to be accepted
    		// with or without tagging. If a tag number is present, it must be valid.
    		TimeTag: cbor.DecTagOptional,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top