Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 111 for typeVar (0.23 sec)

  1. src/encoding/xml/typeinfo.go

    	fAny
    
    	fOmitEmpty
    
    	fMode = fElement | fAttr | fCDATA | fCharData | fInnerXML | fComment | fAny
    
    	xmlName = "XMLName"
    )
    
    var tinfoMap sync.Map // map[reflect.Type]*typeInfo
    
    var nameType = reflect.TypeFor[Name]()
    
    // getTypeInfo returns the typeInfo structure with details necessary
    // for marshaling and unmarshaling typ.
    func getTypeInfo(typ reflect.Type) (*typeInfo, error) {
    	if ti, ok := tinfoMap.Load(typ); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/runtime/traceevent.go

    	return traceArg(trace.stringTab[tl.gen%2].emit(tl.gen, s))
    }
    
    // rtype returns a traceArg representing typ which may be passed to write.
    func (tl traceLocker) rtype(typ *abi.Type) traceArg {
    	return traceArg(trace.typeTab[tl.gen%2].put(typ))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal.go

    		if prefix == "" {
    			break
    		}
    		p.deleteAttrPrefix(prefix)
    	}
    }
    
    var (
    	marshalerType     = reflect.TypeFor[Marshaler]()
    	marshalerAttrType = reflect.TypeFor[MarshalerAttr]()
    	textMarshalerType = reflect.TypeFor[encoding.TextMarshaler]()
    )
    
    // marshalValue writes one or more XML elements representing val.
    // If val was obtained from a struct field, finfo must have its details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/encoding/json/decode.go

    		return Number(s), nil
    	}
    	f, err := strconv.ParseFloat(s, 64)
    	if err != nil {
    		return nil, &UnmarshalTypeError{Value: "number " + s, Type: reflect.TypeFor[float64](), Offset: int64(d.off)}
    	}
    	return f, nil
    }
    
    var numberType = reflect.TypeFor[Number]()
    
    // literalStore decodes a literal stored in item into v.
    //
    // fromQuoted indicates whether this literal came from unwrapping a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

    BUILD SUCCESSFUL"""
    
        }
    
        def "multipleMatchingTasksOfDifferentType"() {
            setup:
            createDirs("subproj1")
            settingsFile << "include ':subproj1'"
            buildFile << """task someTask(type:Jar){
                description = "an archiving operation"
            }
    
            project(":subproj1"){
                task someTask(type:Copy){
                    description = "a copy operation"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

                  for (String exponent : ImmutableList.of("0", "-5", "+20", "52")) {
                    for (String typePart : ImmutableList.of("", "D", "F", "d", "f")) {
                      checkTryParse(
                          signChar + hexPrefix + iPart + fPart + expMarker + exponent + typePart);
                    }
                  }
                }
              }
            }
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

                    allowAll()
                }
            }
    
            then:
            succeeds 'resolve'
            outputContains("selectorSize:1")
            outputContains("classifier:classy")
            outputContains("type:jar")
        }
    
        def "added dependency has no artifact selectors"() {
            repository {
                'org.test:projectA:1.0' {
                }
                'org.test:projectB:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/delta.go

    		deltaLog.Debugf("ADS:%s: REQ %s Expired nonce received %s, sent %s", stype,
    			con.ID(), request.ResponseNonce, previousInfo.NonceSent)
    		xds.ExpiredNonce.With(typeTag.Value(v3.GetMetricType(request.TypeUrl))).Increment()
    		return false
    	}
    	// If it comes here, that means nonce match. This an ACK. We should record
    	// the ack details and respond if there is a change in resource names.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. src/runtime/traceruntime.go

    	lockInit(&trace.stackTab[0].tab.mem.lock, lockRankTraceStackTab)
    	lockInit(&trace.stackTab[1].tab.mem.lock, lockRankTraceStackTab)
    	lockInit(&trace.typeTab[0].tab.mem.lock, lockRankTraceTypeTab)
    	lockInit(&trace.typeTab[1].tab.mem.lock, lockRankTraceTypeTab)
    	lockInit(&trace.lock, lockRankTrace)
    }
    
    // lockRankMayTraceFlush records the lock ranking effects of a
    // potential call to traceFlush.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. src/encoding/json/bench_test.go

    		maxTypes = 1e3 // restrict cache sizes on builders
    	}
    
    	// Dynamically generate many new types.
    	types := make([]reflect.Type, maxTypes)
    	fs := []reflect.StructField{{
    		Type:  reflect.TypeFor[string](),
    		Index: []int{0},
    	}}
    	for i := range types {
    		fs[0].Name = fmt.Sprintf("TypeFieldsCache%d", i)
    		types[i] = reflect.StructOf(fs)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top