Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for newNames (0.11 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

         *
         * Some variables can have their names changed by special annotations like `@ParameterName(name = "newName")`. This is used to preserve
         * the names of the lambda parameters in the situations like this:
         *
         * ```
         * // compiled library
         * fun foo(): (bar: String) -> Unit { ... }
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    }
    
    func makeWaypoint(
    	gateway *v1beta1.Gateway,
    	gatewayClass *v1beta1.GatewayClass,
    	serviceAccounts []string,
    	trafficType string,
    ) *Waypoint {
    	return &Waypoint{
    		Named:           krt.NewNamed(gateway),
    		Addresses:       getGatewayAddrs(gateway),
    		DefaultBinding:  makeInboundBinding(gateway, gatewayClass),
    		TrafficType:     trafficType,
    		ServiceAccounts: slices.Sort(serviceAccounts),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		t.Errorf("Expected 1 item to be in unschedulablePods, but got: %v", len(q.unschedulablePods.podInfoMap))
    	}
    }
    
    func clonePod(pod *v1.Pod, newName string) *v1.Pod {
    	pod = pod.DeepCopy()
    	pod.Name = newName
    	pod.UID = types.UID(pod.Name + pod.Namespace)
    	return pod
    }
    
    func expectInFlightPods(t *testing.T, q *PriorityQueue, uids ...types.UID) {
    	t.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		base.Fatalf("deferStructFnField is %q, not fn", name)
    	}
    
    	n := ir.NewDeclNameAt(src.NoXPos, ir.OTYPE, ir.Pkgs.Runtime.Lookup("_defer"))
    	typ := types.NewNamed(n)
    	n.SetType(typ)
    	n.SetTypecheck(1)
    
    	// build struct holding the above fields
    	typ.SetUnderlying(types.NewStruct(fields))
    	types.CalcStructSize(typ)
    
    	deferType = typ
    	return typ
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top