Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 277 for ulong (0.06 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    var map_TableOptions = map[string]string{
    	"":              "TableOptions are used when a Table is requested by the caller.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	UsageLine:   testUsage,
    	Short:       "test packages",
    	Long: `
    'Go test' automates testing the packages named by the import paths.
    It prints a summary of the test results in the format:
    
    	ok   archive/tar   0.011s
    	FAIL archive/zip   0.022s
    	ok   compress/gzip 0.033s
    	...
    
    followed by detailed output for each failed package.
    
    'Go test' recompiles each package along with any files with names matching
    the file pattern "*_test.go".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top