Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for boxes (0.04 sec)

  1. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{'tfl.non_max_suppression_v4' op failed to verify that boxes should have dim[1] == 4}}
      %0, %1 = "tfl.non_max_suppression_v4"(%arg0, %arg1, %arg2, %arg3, %arg4) : (tensor<3x2xf32>, tensor<3xf32>, tensor<i32>, tensor<f32>, tensor<f32>) -> (tensor<2xi32>, tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. src/internal/poll/errno_windows.go

    package poll
    
    import "syscall"
    
    // Do the interface allocations only once for common
    // Errno values.
    
    var (
    	errERROR_IO_PENDING error = syscall.Errno(syscall.ERROR_IO_PENDING)
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    func errnoErr(e syscall.Errno) error {
    	switch e {
    	case 0:
    		return nil
    	case syscall.ERROR_IO_PENDING:
    		return errERROR_IO_PENDING
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 725 bytes
    - Viewed (0)
  3. src/internal/poll/errno_unix.go

    // Do the interface allocations only once for common
    // Errno values.
    var (
    	errEAGAIN error = syscall.EAGAIN
    	errEINVAL error = syscall.EINVAL
    	errENOENT error = syscall.ENOENT
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    func errnoErr(e syscall.Errno) error {
    	switch e {
    	case 0:
    		return nil
    	case syscall.EAGAIN:
    		return errEAGAIN
    	case syscall.EINVAL:
    		return errEINVAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:12:40 UTC 2023
    - 696 bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ScalarTypesInManagedModelIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class ScalarTypesInManagedModelIntegrationTest extends AbstractIntegrationSpec {
    
        def "values of primitive types and boxed primitive types are widened as usual when using groovy"() {
            when:
            buildScript '''
                @Managed
                interface PrimitiveTypes {
                    Long getLongPropertyFromInt()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/typeconversion/TypeConverter.java

     * limitations under the License.
     */
    
    package org.gradle.internal.typeconversion;
    
    public interface TypeConverter {
        /**
         * @param type The target type. Should be the boxed type for primitives.
         * @throws TypeConversionException On failure.
         * @throws UnsupportedNotationException On unsupported input.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1009 bytes
    - Viewed (0)
  6. src/crypto/des/block.go

    		bit := (src >> n) & 1
    		block |= bit << uint((len(permutation)-1)-position)
    	}
    	return
    }
    
    func initFeistelBox() {
    	for s := range sBoxes {
    		for i := 0; i < 4; i++ {
    			for j := 0; j < 16; j++ {
    				f := uint64(sBoxes[s][i][j]) << (4 * (7 - uint(s)))
    				f = permuteBlock(f, permutationFunction[:])
    
    				// Row is determined by the 1st and 6th bit.
    				// Column is the middle four bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/reflect/float32reg_riscv64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // riscv64 allows 32-bit floats to live in the bottom
    // part of the register, it expects them to be NaN-boxed.
    // These functions are needed to ensure correct conversions
    // on riscv64.
    
    // Convert float32->uint64
    TEXT ·archFloat32ToReg(SB),NOSPLIT,$0-16
    	MOVF	val+0(FP), F1
    	MOVD	F1, ret+8(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 13:38:32 UTC 2022
    - 794 bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtTypeMappingMode.kt

        SUPER_TYPE,
    
        /**
         * Similar to [SUPER_TYPE], except for that Kotlin collections remain as-is.
         */
        SUPER_TYPE_KOTLIN_COLLECTIONS_AS_IS,
    
        /**
         * When method return type should be boxed (e.g., kotlin.Int to Ljava/lang/Integer;)
         */
        RETURN_TYPE_BOXED,
    
        /**
         * Optimal mode to convert the return type of declarations if it's part of signature.
         */
        RETURN_TYPE,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

        boolean aBoolean = true;
        Long boxedLong = null;
        int anInt = 1;
        // With a boxed predicate, no overloads can be selected in phase 1
        // ambiguous without the call to .booleanValue to unbox the Boolean
        Preconditions.checkState(boxedBoolean.booleanValue(), "", 1);
        // ambiguous without the cast to Object because the boxed predicate prevents any overload from
        // being selected in phase 1
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/typeconversion/DefaultTypeConverter.java

        }
    
        private static class CharacterConverter extends CharSequenceConverter<Character> {
            private final Class<Character> target;
    
            public CharacterConverter(Class<Character> boxed, Class<Character> target) {
                super(boxed);
                this.target = target;
            }
    
            @Override
            public void convert(String notation, NotationConvertResult<? super Character> result) throws TypeConversionException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top