Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for sameType (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     *     artifact {
     *       //useful when some artifact properties unconventional
     *       name = 'someArtifact' //artifact name different than module name
     *       extension = 'someExt'
     *       type = 'someType'
     *       classifier = 'someClassifier'
     *     }
     *   }
     * }
     * </pre>
     *
     * <h2>Dependency notations</h2>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. architecture/networking/pilot.md

    `PushContext` is built up by querying the above layers. For some simple use cases, this is as simple as storing something like `configstore.List(SomeType)`; in this case, the only difference from directly exposing the configstore is to snapshot the current state. In other cases, some pre-computations and indexes are computed to make later accesses efficient.
    
    #### Endpoints
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. src/encoding/xml/read.go

    		saveData = v
    
    	case reflect.Struct:
    		typ := v.Type()
    		if typ == nameType {
    			v.Set(reflect.ValueOf(start.Name))
    			break
    		}
    
    		sv = v
    		tinfo, err = getTypeInfo(typ)
    		if err != nil {
    			return err
    		}
    
    		// Validate and assign element name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top