Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 318 for Builtin (0.13 sec)

  1. src/cmd/internal/goobj/builtin.go

    package goobj
    
    import "internal/buildcfg"
    
    // Builtin (compiler-generated) function references appear
    // frequently. We assign special indices for them, so they
    // don't need to be referenced by name.
    
    // NBuiltin returns the number of listed builtin
    // symbols.
    func NBuiltin() int {
    	return len(builtins)
    }
    
    // BuiltinName returns the name and ABI of the i-th
    // builtin symbol.
    func BuiltinName(i int) (string, int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 22 13:50:24 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/builtin.go

    David Chase <******@****.***> 1706309373 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/builtin.go

    Jordan Liggitt <******@****.***> 1569333992 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/builtin.go

    Russ Cox <******@****.***> 1709234889 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. releasenotes/notes/otel-builtin-labels.yaml

    zirain <******@****.***> 1718030161 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 151 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/colocate_tpu_copy_with_dynamic_shape.mlir

    // CHECK-LABEL test_tpu_execute
    func.func @test_tpu_execute(%arg0: tensor<!tf_type.string>) {
         %0 = builtin.unrealized_conversion_cast to tensor<2048xi32>
         %1 = builtin.unrealized_conversion_cast to tensor<2048xi32>
         %2 = builtin.unrealized_conversion_cast to tensor<i32>
         %3 = builtin.unrealized_conversion_cast to tensor<i32>
         // CHECK: TPUCopyWithDynamicShape{{.*}}device = "foobar"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 00:30:27 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. pkg/config/schema/collections/collections.gen.go

    		ProtoPackage: "istio.io/api/security/v1beta1", StatusPackage: "istio.io/api/meta/v1alpha1",
    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       false,
    		ValidateProto: validation.ValidateAuthorizationPolicy,
    	}.MustBuild()
    
    	CertificateSigningRequest = resource.Builder{
    		Identifier: "CertificateSigningRequest",
    		Group:      "certificates.k8s.io",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/credentials/resource_test.go

    	tests := []struct {
    		name      string
    		namespace string
    		want      string
    	}{
    		{"foo", "ns", "kubernetes-gateway://ns/foo"},
    		{"builtin://", "anything", "builtin://"},
    		{"builtin://extra", "anything", "builtin://"},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := ToKubernetesGatewayResource(tt.namespace, tt.name); got != tt.want {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pkg/config/schema/collections/collections.agent.gen.go

    		ProtoPackage: "istio.io/api/security/v1beta1", StatusPackage: "istio.io/api/meta/v1alpha1",
    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       false,
    		ValidateProto: validation.ValidateAuthorizationPolicy,
    	}.MustBuild()
    
    	DestinationRule = resource.Builder{
    		Identifier: "DestinationRule",
    		Group:      "networking.istio.io",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. test/fixedbugs/issue4252.dir/a.go

    // license that can be found in the LICENSE file.
    
    // A package that redeclares common builtin names.
    package a
    
    var true = 0 == 1
    var false = 0 == 0
    var nil = 1
    
    const append = 42
    
    type error bool
    type int interface{}
    
    func len(interface{}) int32 { return 42 }
    
    func Test() {
    	var array [append]int
    	if true {
    		panic("unexpected builtin true instead of redeclared one")
    	}
    	if !false {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 807 bytes
    - Viewed (0)
Back to top