Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 165 for synthetic (0.18 sec)

  1. ChangeLog.md

    - [`KT-32754`](https://youtrack.jetbrains.com/issue/KT-32754) Choose existing extensions over additional built-ins members from JDK except overrides
    - [`KT-57800`](https://youtrack.jetbrains.com/issue/KT-57800) Support synthetic properties on `super` receiver
    - [`KT-64350`](https://youtrack.jetbrains.com/issue/KT-64350) K2: deprecate using typealias as a callable qualifier in imports
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. src/go/types/builtins.go

    			if r := f(t.typ); r != nil {
    				terms = append(terms, NewTerm(t.tilde, r))
    				return true
    			}
    			return false
    		}) {
    			return nil
    		}
    
    		// We can type-check this fine but we're introducing a synthetic
    		// type parameter for the result. It's not clear what the API
    		// implications are here. Report an error for 1.18 (see go.dev/issue/50912),
    		// but continue type-checking.
    		var code Code
    		switch id {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/import.go

    	// requirements in mg.
    	for {
    		var sumErrMods, altMods []module.Version
    		for prefix := path; prefix != "."; prefix = pathpkg.Dir(prefix) {
    			if gover.IsToolchain(prefix) {
    				// Do not use the synthetic "go" module for "go/ast".
    				continue
    			}
    			var (
    				v  string
    				ok bool
    			)
    			if mg == nil {
    				v, ok = rs.rootSelected(prefix)
    			} else {
    				v, ok = mg.Selected(prefix), true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. src/go/types/infer.go

    // If reverse is set, an error message's contents are reversed for a better error message for some
    // errors related to reverse type inference (where the function call is synthetic).
    // If successful, infer returns the complete list of given and inferred type arguments, one for each
    // type parameter. Otherwise the result is nil. Errors are reported through the err parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/infer.go

    // If reverse is set, an error message's contents are reversed for a better error message for some
    // errors related to reverse type inference (where the function call is synthetic).
    // If successful, infer returns the complete list of given and inferred type arguments, one for each
    // type parameter. Otherwise the result is nil. Errors are reported through the err parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/builtins.go

    			if r := f(t.typ); r != nil {
    				terms = append(terms, NewTerm(t.tilde, r))
    				return true
    			}
    			return false
    		}) {
    			return nil
    		}
    
    		// We can type-check this fine but we're introducing a synthetic
    		// type parameter for the result. It's not clear what the API
    		// implications are here. Report an error for 1.18 (see go.dev/issue/50912),
    		// but continue type-checking.
    		var code Code
    		switch id {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_inbound.go

    					port.TargetPort, lb.node.ID)
    				continue
    			}
    			cc := inboundChainConfig{
    				// Sidecar config doesn't have a real hostname. In order to give some telemetry info, make a synthetic hostname.
    				telemetryMetadata: telemetry.FilterChainMetadata{
    					InstanceHostname: host.Name(lb.node.SidecarScope.Name + "." + lb.node.SidecarScope.Namespace),
    				},
    				port:        port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers_test.go

    		RunningPod: &kubecontainer.Pod{ID: "1", Name: "1", Namespace: "test"},
    	})
    	drainAllWorkers(podWorkers)
    	if len(processed) != 0 {
    		t.Fatalf("Not all pods processed: %v", len(processed))
    	}
    
    	// creates synthetic pod
    	podWorkers.UpdatePod(UpdatePodOptions{
    		UpdateType: kubetypes.SyncPodKill,
    		RunningPod: &kubecontainer.Pod{ID: "1", Name: "1", Namespace: "test"},
    	})
    	drainAllWorkers(podWorkers)
    	if len(processed) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/call.go

    		// an assignment (tsig != nil), infer missing type arguments by treating
    		// the assignment
    		//
    		//    var tvar tsig = x
    		//
    		// like a call g(tvar) of the synthetic generic function g
    		//
    		//    func g[type_parameters_of_x](func_type_of_x)
    		//
    		var args []*operand
    		var params []*Var
    		var reverse bool
    		if T != nil && sig.tparams != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. src/net/http/cookiejar/jar_test.go

    // license that can be found in the LICENSE file.
    
    package cookiejar
    
    import (
    	"fmt"
    	"net/http"
    	"net/url"
    	"slices"
    	"strings"
    	"testing"
    	"time"
    )
    
    // tNow is the synthetic current time used as now during testing.
    var tNow = time.Date(2013, 1, 1, 12, 0, 0, 0, time.UTC)
    
    // testPSL implements PublicSuffixList with just two rules: "co.uk"
    // and the default rule "*".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top