Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 255 for ulong (0.05 sec)

  1. src/cmd/cgo/out.go

    typedef signed char GoInt8;
    typedef unsigned char GoUint8;
    typedef short GoInt16;
    typedef unsigned short GoUint16;
    typedef int GoInt32;
    typedef unsigned int GoUint32;
    typedef long long GoInt64;
    typedef unsigned long long GoUint64;
    typedef GoIntGOINTBITS GoInt;
    typedef GoUintGOINTBITS GoUint;
    typedef size_t GoUintptr;
    typedef float GoFloat32;
    typedef double GoFloat64;
    #ifdef _MSC_VER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // before taking the alternate action.
      // +optional
      optional int32 retryAfterSeconds = 5;
    }
    
    // TableOptions are used when a Table is requested by the caller.
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    message TableOptions {
      // includeObject decides whether to include each object along with its columnar information.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // before taking the alternate action.
      // +optional
      optional int32 retryAfterSeconds = 5;
    }
    
    // TableOptions are used when a Table is requested by the caller.
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    message TableOptions {
      // includeObject decides whether to include each object along with its columnar information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

        public static class BeanWithCovariantAbstract extends AbstractWithProperties<Long> implements WithProperties {
            @Override
            public String getProp() {
                return "string";
            }
    
            @Override
            public Integer getNumber() {
                return 12;
            }
    
            @Override
            public final Long getTypedProp() {
                return 12L;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(List[].class, token.getRawType());
        assertThat(token.getType()).isInstanceOf(GenericArrayType.class);
      }
    
      public void testMultiDimensionalGenericArrayType() {
        TypeToken<List<Long>[][][]> token = new TypeToken<List<Long>[][][]>() {};
        assertEquals(List[][][].class, token.getRawType());
        assertThat(token.getType()).isInstanceOf(GenericArrayType.class);
      }
    
      public <T> void testGenericVariableTypeArrays() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Forbidden().
    	CauseTypeForbidden CauseType = "FieldValueForbidden"
    	// CauseTypeTooLong is used to report that the given value is too long.
    	// This is similar to ErrorTypeInvalid, but the error will not include the
    	// too-long value.  See TooLong().
    	CauseTypeTooLong CauseType = "FieldValueTooLong"
    	// CauseTypeTooMany is used to report "too many". This is used to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            given:
            registry.register("foo") { it.descriptor("foo creator").unmanaged(String, Long, Stub(Transformer)) }
    
            when:
            registry.realize("foo")
    
            then:
            UnboundModelRulesException e = thrown()
            normaliseLineSeparators(e.message).contains '''
      foo creator
        inputs:
          - <no path> Long [*]
    '''
        }
    
        def "cannot register when by-type input is ambiguous"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(List[].class, token.getRawType());
        assertThat(token.getType()).isInstanceOf(GenericArrayType.class);
      }
    
      public void testMultiDimensionalGenericArrayType() {
        TypeToken<List<Long>[][][]> token = new TypeToken<List<Long>[][][]>() {};
        assertEquals(List[][][].class, token.getRawType());
        assertThat(token.getType()).isInstanceOf(GenericArrayType.class);
      }
    
      public <T> void testGenericVariableTypeArrays() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // The specialization for size 8.
    template <>
    class TypeWithSize<8> {
     public:
    #if GTEST_OS_WINDOWS
      typedef __int64 Int;
      typedef unsigned __int64 UInt;
    #else
      typedef long long Int;  // NOLINT
      typedef unsigned long long UInt;  // NOLINT
    #endif  // GTEST_OS_WINDOWS
    };
    
    // Integer types of known sizes.
    typedef TypeWithSize<4>::Int Int32;
    typedef TypeWithSize<4>::UInt UInt32;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    			}
    		} else {
    			if err != nil {
    				return err
    			}
    		}
    		if *updateErrors {
    			t.updateErrors(string(out), long)
    		}
    		return t.errorCheck(string(out), wantAuto, long, t.goFile)
    
    	case "compile":
    		// Compile Go file.
    		_, err := compileFile(runcmd, long, flags)
    		return err
    
    	case "compiledir":
    		// Compile all files in the directory as packages in lexicographic order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top