Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for recognizers (0.17 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          else:
            raise NotImplementedError('USub type not recognized: ' + str(ty))
          return ssa_value, ty
        raise NotImplementedError('USub operator not recognized')
    
      def visit_For(self, node):
        raise NotImplementedError('For operator not recognized')
    
      def visit_While(self, node):
        raise NotImplementedError('While operator not recognized')
    
      def visit_Try(self, node):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		return t.Delegate.ObjectKinds(obj)
    	}
    	return t.UnstructuredTyper.ObjectKinds(obj)
    }
    
    func (t UnstructuredObjectTyper) Recognizes(gvk schema.GroupVersionKind) bool {
    	return t.Delegate.Recognizes(gvk) || t.UnstructuredTyper.Recognizes(gvk)
    }
    
    type unstructuredCreator struct{}
    
    func (c unstructuredCreator) New(kind schema.GroupVersionKind) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/time/format.go

    //
    // Here is a summary of the components of a layout string. Each element shows by
    // example the formatting of an element of the reference time. Only these values
    // are recognized. Text in the layout string that is not recognized as part of
    // the reference time is echoed verbatim during Format and expected to appear
    // verbatim in the input to Parse.
    //
    //	Year: "2006" "06"
    //	Month: "Jan" "January" "01" "1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	    Write an execution trace to the specified file before exiting.
    
    Each of these flags is also recognized with an optional 'test.' prefix,
    as in -test.v. When invoking the generated test binary (the result of
    'go test -c') directly, however, the prefix is mandatory.
    
    The 'go test' command rewrites or removes recognized flags,
    as appropriate, both before and after the optional package list,
    before invoking the test binary.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/go/build/build.go

    	//
    	// Deprecated:
    	// The supported way to create a compiled-only package is to
    	// write source code containing a //go:binary-only-package comment at
    	// the top of the file. Such a package will be recognized
    	// regardless of this flag setting (because it has source code)
    	// and will have BinaryOnly set to true in the returned Package.
    	AllowBinary
    
    	// If ImportComment is set, parse import comments on package statements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    	Cboth ChanDir = Crecv | Csend
    )
    
    // Types stores pointers to predeclared named types.
    //
    // It also stores pointers to several special types:
    //   - Types[TANY] is the placeholder "any" type recognized by SubstArgTypes.
    //   - Types[TBLANK] represents the blank variable's type.
    //   - Types[TINTER] is the canonical "interface{}" type.
    //   - Types[TNIL] represents the predeclared "nil" value's type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"apiVersion": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package demangle defines functions that demangle GCC/LLVM
    // C++ and Rust symbol names.
    // This package recognizes names that were mangled according to the C++ ABI
    // defined at http://codesourcery.com/cxx-abi/ and the Rust ABI
    // defined at
    // https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top