Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for Builtin (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/schema/schema_utils.h

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    
    namespace tflite {
    
    // The following methods are introduced to resolve op builtin code shortage
    // problem. The new builtin operator will be assigned to the extended builtin
    // code field in the flatbuffer schema. Those methods helps to hide builtin code
    // details.
    BuiltinOperator GetBuiltinCode(const OperatorCode *op_code);
    
    BuiltinOperator GetBuiltinCode(const OperatorCodeT *op_code);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/install_goroot_targets.txt

    # (Though we can't try installing it without modifying goroot).
    env GODEBUG=installgoroot=all
    go list -f '{{.Target}}' fmt
    stdout fmt\.a
    
    # However, the fake packages "builtin" and "unsafe" do not.
    go list -f '{{.Target}}' builtin unsafe
    ! stdout .
    go install builtin unsafe  # Should succeed as no-ops.
    
    # With CGO_ENABLED=0, packages that would have
    # an install target with cgo on no longer do.
    env GODEBUG=
    env CGO_ENABLED=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 22:43:41 UTC 2022
    - 747 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_utils.cc

    // The actual builtin operator code value will exist in the
    // `deprecated_builtin_code` field. At the same time, it implies that
    // `deprecated_builtin_code` >= `builtin_code` and the maximum value of the two
    // fields will be same with `deprecated_builtin_code'.
    //
    // - Supporting builtin operator codes beyonds 127
    //
    // New builtin operators, whose operator code is larger than 127, can not be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pkg/config/schema/codegen/templates/crdclient.go.tmpl

    {{- end}}
    )
    
    func create(c kube.Client, cfg config.Config, objMeta metav1.ObjectMeta) (metav1.Object, error) {
    	switch cfg.GroupVersionKind {
    {{- range .Entries }}
    	{{- if and (not .Resource.Synthetic) (not .Resource.Builtin) }}
    	case gvk.{{.Resource.Identifier}}:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. pkg/config/schema/codegen/templates/collections.go.tmpl

    			{{- if ne "" .Resource.StatusProtoPackage}}StatusPackage: "{{ .Resource.StatusProtoPackage }}", {{end}}
    			ClusterScoped: {{ .Resource.ClusterScoped }},
    			Synthetic: {{ .Resource.Synthetic }},
    			Builtin: {{ .Resource.Builtin }},
    			ValidateProto: {{ .Resource.Validate }},
    		}.MustBuild()
    {{ end }}
    
    	// All contains all collections in the system.
    	All = collection.NewSchemasBuilder().
    	{{- range .Entries }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. pkg/config/schema/resource/schema.go

    	// ClusterScoped is true for resource in cluster-level.
    	ClusterScoped bool
    
    	// Synthetic is true for resource that do not actually exist in a cluster
    	Synthetic bool
    
    	// Builtin is true for resources that are builtin (not CRD)
    	Builtin bool
    
    	// Identifier is the unique identifier for the resource
    	Identifier string
    
    	// Kind is the config proto type.
    	Kind string
    
    	// Plural is the type in plural.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/mkbuiltin.go

    //go:build ignore
    
    // Generate builtin.go from builtin/runtime.go.
    
    package main
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/format"
    	"go/parser"
    	"go/token"
    	"io"
    	"log"
    	"os"
    	"path/filepath"
    	"strconv"
    	"strings"
    )
    
    var stdout = flag.Bool("stdout", false, "write to stdout instead of builtin.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top