Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 216 for yield (0.04 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            failure.assertHasFileName("Build file '${buildFile.absolutePath}'")
            failure.assertHasLineNumber(4)
            failure.assertHasDescription("Configuration cache state could not be cached: field `prop` of task `:broken` of type `BrokenTaskType`: error writing value of type 'BrokenSerializable'")
            failure.assertHasCause("BOOM")
            problems.assertResultHasProblems(failure)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    }
    
    // Search children (assumed to have TAG_member) for the one named
    // field and set its AT_type to dwtype
    func (d *dwctxt) substitutetype(structdie *dwarf.DWDie, field string, dwtype loader.Sym) {
    	child := findchild(structdie, field)
    	if child == nil {
    		Exitf("dwarf substitutetype: %s does not have member %s",
    			getattr(structdie, dwarf.DW_AT_name).Data, field)
    		return
    	}
    
    	a := getattr(child, dwarf.DW_AT_type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	// GetConfigForClient. Clients doing client-authentication may set either
    	// Certificates or GetClientCertificate.
    	//
    	// Note: if there are multiple Certificates, and they don't have the
    	// optional field Leaf set, certificate selection will incur a significant
    	// per-handshake performance cost.
    	Certificates []Certificate
    
    	// NameToCertificate maps from a certificate name to an element of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    		return nil, fmt.Errorf("unexpected error: %v", err)
    	}
    	items := v.FieldByName("Items")
    	if !items.IsValid() {
    		return nil, fmt.Errorf("unexpected Items field in %v", listObj)
    	}
    	if items.Type().Kind() != reflect.Slice {
    		return nil, fmt.Errorf("unexpected Items field type: %v", items.Type().Kind())
    	}
    	result := make([]runtime.Object, items.Len())
    	for i := 0; i < items.Len(); i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    func armBFAuxInt(lsb, width int64) arm64BitField {
    	if lsb < 0 || lsb > 63 {
    		panic("ARM(64) bit field lsb constant out of range")
    	}
    	if width < 1 || lsb+width > 64 {
    		panic("ARM(64) bit field width constant out of range")
    	}
    	return arm64BitField(width | lsb<<8)
    }
    
    // returns the lsb part of the auxInt field of arm64 bitfield ops.
    func (bfc arm64BitField) getARM64BFlsb() int64 {
    	return int64(uint64(bfc) >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    		Value:     &PresenceTest{new(struct{})},
    		ExpectXML: `<PresenceTest><Exists></Exists></PresenceTest>`,
    	},
    	{
    		Value:     &PresenceTest{},
    		ExpectXML: `<PresenceTest></PresenceTest>`,
    	},
    
    	// A []byte field is only nil if the element was not found.
    	{
    		Value:         &Data{},
    		ExpectXML:     `<Data></Data>`,
    		UnmarshalOnly: true,
    	},
    	{
    		Value:         &Data{Bytes: []byte{}, Custom: MyBytes{}, Attr: []byte{}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    	_AUX_SYM    = 253
    	_AUX_FILE   = 252
    	_AUX_CSECT  = 251
    	_AUX_SECT   = 250
    )
    
    // Xftype field
    const (
    	XFT_FN = 0   // Source File Name
    	XFT_CT = 1   // Compile Time Stamp
    	XFT_CV = 2   // Compiler Version Number
    	XFT_CD = 128 // Compiler Defined Information/
    
    )
    
    // Symbol type field.
    const (
    	XTY_ER  = 0    // External reference
    	XTY_SD  = 1    // Section definition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    	var c1 Config
    	v := reflect.ValueOf(&c1).Elem()
    
    	typ := v.Type()
    	for i := 0; i < typ.NumField(); i++ {
    		f := v.Field(i)
    		// testing/quick can't handle functions or interfaces and so
    		// isn't used here.
    		switch fn := typ.Field(i).Name; fn {
    		case "Rand":
    			f.Set(reflect.ValueOf(io.Reader(os.Stdin)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    // themselves interfaces or structs are used; only fields with a json tag that is non empty (the standard
    // Go JSON behavior for omitting a field) become query parameters. The name of the query parameter is
    // the JSON field name. If a description struct tag is set on the field, that description is used on the
    // query parameter. In essence, it converts a standard JSON top level object into a query param schema.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p384_fiat64.go

    // The type p384MontgomeryDomainFieldElement is a field element in the Montgomery domain.
    //
    // Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
    type p384MontgomeryDomainFieldElement [6]uint64
    
    // The type p384NonMontgomeryDomainFieldElement is a field element NOT in the Montgomery domain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
Back to top