Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for eface (0.04 sec)

  1. src/go/types/api_test.go

    		NewFunc(nopos, nil, "M", sig2),
    	}
    
    	embeddedMethods := []*Func{
    		NewFunc(nopos, nil, "M", sig2),
    	}
    	embedded := NewInterfaceType(embeddedMethods, nil)
    	iface := NewInterfaceType(methods, []Type{embedded})
    	iface.Complete()
    }
    
    func TestNewAlias_Issue65455(t *testing.T) {
    	obj := NewTypeName(nopos, nil, "A", nil)
    	alias := NewAlias(obj, Typ[Int])
    	alias.Underlying() // must not panic
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    		NewFunc(nopos, nil, "M", sig2),
    	}
    
    	embeddedMethods := []*Func{
    		NewFunc(nopos, nil, "M", sig2),
    	}
    	embedded := NewInterfaceType(embeddedMethods, nil)
    	iface := NewInterfaceType(methods, []Type{embedded})
    	iface.NumMethods() // unlike go/types, there is no Complete() method, so we complete implicitly
    }
    
    func TestNewAlias_Issue65455(t *testing.T) {
    	obj := NewTypeName(nopos, nil, "A", nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/html/template/escape_test.go

    		},
    		{
    			`<a g:value`,
    			context{state: stateAttrName},
    		},
    		{
    			`<a svg:style='`,
    			context{state: stateCSS, delim: delimSingleQuote, attr: attrStyle},
    		},
    		{
    			`<svg:font-face`,
    			context{state: stateTag},
    		},
    		{
    			`<svg:a svg:onclick="`,
    			context{state: stateJS, delim: delimDoubleQuote, attr: attrScript},
    		},
    		{
    			`<svg:a svg:onclick="x()">`,
    			context{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	// so that we can correctly model P stealing. Without this sequence number here,
    	// the syscall from which a ProcSteal event is stealing can be ambiguous in the
    	// face of broken timestamps. See the go122-syscall-steal-proc-ambiguous test for
    	// more details.
    	//
    	// Note that because this sequence number only exists as a tool for disambiguation,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	// If we're below the goal already indicate that we don't need the background
    	// scavenger for the memory limit. This may seems worrisome at first, but note
    	// that the allocator will assist the background scavenger in the face of a memory
    	// limit, so we'll be safe even if we stop the scavenger when we shouldn't have.
    	if mappedReady <= memoryLimitGoal {
    		scavenge.memoryLimitGoal.Store(^uint64(0))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    		// nor from a local process to be forwarded to the service.
    		// This rule roughly translates to "all traffic from off-machine".
    		// This is imperfect in the face of network plugins that might not use a bridge, but we can revisit that later.
    		externalTrafficOnlyArgs := append(args,
    			"-m", "physdev", "!", "--physdev-is-in",
    			"-m", "addrtype", "!", "--src-type", "LOCAL")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    For IDE problems outside of the Kotlin DSL script editor, please open issues in the corresponding IDE's issue tracker:
    
    * link:[JetBrains's IDEA issue tracker],
    * link:[Google's Android Studio issue tracker].
    
    Lastly, if you face problems with Gradle itself or with the Kotlin DSL, please open issues on the link:{gradle-issues}[Gradle issue tracker].
    
    
    [[sec:scripts]]
    == Kotlin DSL scripts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    // represented here as pvc.Spec.VolumeName and pv.Spec.ClaimRef. The bi-
    // directionality is complicated to manage in a transactionless system, but
    // without it we can't ensure sane behavior in the face of different forms of
    // trouble. For example, a rogue HA controller instance could end up racing
    // and making multiple bindings that are indistinguishable, resulting in
    // potential data loss.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top