Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for ut (0.02 sec)

  1. src/encoding/gob/encoder.go

    	ut := userType(origt)
    	if ut.externalEnc != 0 {
    		// The rules are different: regardless of the underlying type's representation,
    		// we need to tell the other side that the base type is a GobEncoder.
    		return enc.sendActualType(w, state, ut, ut.base)
    	}
    
    	// It's a concrete value, so drill down to the base type.
    	switch rt := ut.base; rt.Kind() {
    	default:
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-09-08 19:04
    - 7.8K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultModelResolverTest.java

            assertNotNull(e.getMessage());
            assertTrue(e.getMessage().contains("Could not find artifact ut.simple:artifact:pom:0 in repo"));
        }
    
        @Test
        void testResolveParentThrowsUnresolvableModelExceptionWhenNoMatchingVersionFound() throws Exception {
            final Parent parent = Parent.newBuilder()
                    .groupId("ut.simple")
                    .artifactId("artifact")
                    .version("[2.0,2.1)")
    Registered: 2024-06-12 09:55
    - Last Modified: 2023-09-06 08:39
    - 8.6K bytes
    - Viewed (0)
  3. src/encoding/gob/type.go

    	// 	ut.externalEnc, ut.encIndir = xText, indir
    	// }
    
    	if ok, indir := implementsInterface(ut.user, gobDecoderInterfaceType); ok {
    		ut.externalDec, ut.decIndir = xGob, indir
    	} else if ok, indir := implementsInterface(ut.user, binaryUnmarshalerInterfaceType); ok {
    		ut.externalDec, ut.decIndir = xBinary, indir
    	}
    
    	// See note above.
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-05-16 02:00
    - 27.2K bytes
    - Viewed (0)
  4. src/encoding/gob/encode.go

    func gobEncodeOpFor(ut *userTypeInfo) (*encOp, int) {
    	rt := ut.user
    	if ut.encIndir == -1 {
    		rt = reflect.PointerTo(rt)
    	} else if ut.encIndir > 0 {
    		for i := int8(0); i < ut.encIndir; i++ {
    			rt = rt.Elem()
    		}
    	}
    	var op encOp
    	op = func(i *encInstr, state *encoderState, v reflect.Value) {
    		if ut.encIndir == -1 {
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-05-16 02:00
    - 19K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    	}
    	toUnit := ut.sniffUnit(toUnitStr)
    	if toUnit == nil {
    		return v / ut.DefaultUnit.Factor, ut.DefaultUnit.CanonicalName, true
    	}
    	return v / toUnit.Factor, toUnit.CanonicalName, true
    }
    
    // UnitTypes holds the definition of units known to pprof.
    var UnitTypes = []UnitType{{
    	Units: []Unit{
    		{"B", []string{"b", "byte"}, 1},
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-05-31 19:48
    - 8.8K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/RepositorySystemTest.java

            req1.setArtifact(new DefaultArtifact("ut.simple:artifact:1.0"));
            req1.addRepository(newTestRepository());
    
            ArtifactRequest req2 = new ArtifactRequest();
            req2.setArtifact(new DefaultArtifact("ut.simple:artifact:zip:1.0"));
            req2.addRepository(newTestRepository());
    
            ArtifactRequest req3 = new ArtifactRequest();
            req3.setArtifact(new DefaultArtifact("ut.simple:artifact:zip:classifier:1.0"));
    Registered: 2024-06-12 09:55
    - Last Modified: 2023-04-15 17:24
    - 9.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/tree/consumer/pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0">
    
        <parent>
            <groupId>org.apache.maven.ut</groupId>
            <artifactId>parent</artifactId>
        </parent>
        <artifactId>consumer</artifactId>
    
        <dependencies>
            <dependency>
                <groupId>org.apache.maven.ut</groupId>
                <artifactId>dep</artifactId>
            </dependency>
        </dependencies>
    
    Registered: 2024-06-12 09:55
    - Last Modified: 2023-09-13 11:39
    - 392 bytes
    - Viewed (0)
  8. maven-resolver-provider/src/test/resources/repo/ut/simple/artifact/1.0/artifact-1.0.pom

      <parent>
        <groupId>ut.simple</groupId>
        <artifactId>parent</artifactId>
        <version>1.0</version>
      </parent>
    
      <artifactId>artifact</artifactId>
    
      <name>Simple Unit Test Artifact</name>
    
      <dependencies>
        <dependency>
          <groupId>ut.simple</groupId>
          <artifactId>dependency</artifactId>
        </dependency>
        <dependency>
          <groupId>ut.simple</groupId>
    Registered: 2024-06-12 09:55
    - Last Modified: 2019-11-07 15:16
    - 1.6K bytes
    - Viewed (0)
  9. architecture/standards/0001-use-architectural-decision-records.md

    ```markdown
    # ADR-000X - Title
    
    ## Date
    
    20YY-MM-DD
    
    ## Context
    
    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
    aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
    Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-03-02 21:54
    - 2.8K bytes
    - Viewed (0)
  10. 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: 2024-06-12 16:32
    - Last Modified: 2023-09-07 19:10
    - 40.1K bytes
    - Viewed (0)
Back to top