Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for Ut (0.03 sec)

  1. src/encoding/gob/decode.go

    }
    
    // gobDecodeOpFor returns the op for a type that is known to implement
    // GobDecoder.
    func (dec *Decoder) gobDecodeOpFor(ut *userTypeInfo) *decOp {
    	rcvrType := ut.user
    	if ut.decIndir == -1 {
    		rcvrType = reflect.PointerTo(rcvrType)
    	} else if ut.decIndir > 0 {
    		for i := int8(0); i < ut.decIndir; i++ {
    			rcvrType = rcvrType.Elem()
    		}
    	}
    	var op decOp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  2. src/reflect/export_test.go

    type pinUnexpMeth interface {
    	f()
    }
    
    var pinUnexpMethI = pinUnexpMeth(EmbedWithUnexpMeth{})
    
    func FirstMethodNameBytes(t Type) *byte {
    	_ = pinUnexpMethI
    
    	ut := t.uncommon()
    	if ut == nil {
    		panic("type has no methods")
    	}
    	m := ut.Methods()[0]
    	mname := t.(*rtype).nameOff(m.Name)
    	if *mname.DataChecked(0, "name flag field")&(1<<2) == 0 {
    		panic("method name does not have pkgPath *string")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o repsEnvType: (NotRequired - Default inherits or 'ut')
        #  The environment type of ReplaceSchema.
        #   e.g. if ut, data files in './playsql/data/ut/...' are loaded
        #  If DBFlute environment type is specified, inherits it as default.
        #
        #; repsEnvType = ut
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  4. src/compress/gzip/fuzz_test.go

    	"strings"
    	"testing"
    )
    
    func FuzzReader(f *testing.F) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 18:06:33 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/projects/tree/dep/pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0">
    
        <parent>
            <groupId>org.apache.maven.ut</groupId>
            <artifactId>parent</artifactId>
        </parent>
        <artifactId>dep</artifactId>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 212 bytes
    - Viewed (0)
  6. maven-resolver-provider/src/test/resources/repo/ut/simple/parent/1.0/parent-1.0.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>ut.simple</groupId>
      <artifactId>parent</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    
      <name>Simple Unit Test Parent</name>
    
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>ut.simple</groupId>
            <artifactId>dependency</artifactId>
            <version>1.0</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  7. src/internal/reflectlite/export_test.go

    type pinUnexpMeth interface {
    	f()
    }
    
    var pinUnexpMethI = pinUnexpMeth(EmbedWithUnexpMeth{})
    
    func FirstMethodNameBytes(t Type) *byte {
    	_ = pinUnexpMethI
    
    	ut := t.uncommon()
    	if ut == nil {
    		panic("type has no methods")
    	}
    	m := ut.Methods()[0]
    	mname := t.(rtype).nameOff(m.Name)
    	if *mname.DataChecked(0, "name flag field")&(1<<2) == 0 {
    		panic("method name does not have pkgPath *string")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/tree/pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0">
        <groupId>org.apache.maven.ut</groupId>
        <artifactId>parent</artifactId>
        <version>1.0-SNAPSHOT</version>
        <packaging>pom</packaging>
        <modules>
            <module>dep</module>
            <module>consumer</module>
        </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 301 bytes
    - Viewed (0)
  9. src/runtime/os_freebsd.go

    	systemstack(func() {
    		futexsleep1(addr, val, ns)
    	})
    }
    
    func futexsleep1(addr *uint32, val uint32, ns int64) {
    	var utp *umtx_time
    	if ns >= 0 {
    		var ut umtx_time
    		ut._clockid = _CLOCK_MONOTONIC
    		ut._timeout.setNsec(ns)
    		utp = &ut
    	}
    	ret := sys_umtx_op(addr, _UMTX_OP_WAIT_UINT_PRIVATE, val, unsafe.Sizeof(*utp), utp)
    	if ret >= 0 || ret == -_EINTR || ret == -_ETIMEDOUT {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. dbflute_fess/playsql/_readme.txt

    The "data" directory is for data loading like this:
    /- - - - - - - - - - - - - - - - - - - -
    playsql
      |-data
         |-common
         |  |-xls
         |     |-10-master.xls
         |     |-defaultValueMap.dataprop
         |-ut
            |-xls
               |-20-member.xls  
               |-30-product.xls  
               |-defaultValueMap.dataprop
    - - - - - - - - - -/
    
    The format of a xls file is like this:
    /- - - - - - - - - - - - - - - - - - - -
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 1.3K bytes
    - Viewed (0)
Back to top