Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for identified (0.31 sec)

  1. src/cmd/go/alldocs.go

    //
    // # Show documentation for package or symbol
    //
    // Usage:
    //
    //	go doc [doc flags] [package|[package.]symbol[.methodOrField]]
    //
    // Doc prints the documentation comments associated with the item identified by its
    // arguments (a package, const, func, type, var, method, or struct field)
    // followed by a one-line summary of each of the first-level items "under"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::unique_ptr<flexbuffers::Builder> CreateFlexBuilderWithNodeAttrs(
          const ::tensorflow::NodeDef& node_def, const mlir::Location& loc);
    
      // Returns opcode index for op identified by the op_name, if already
      // available. Otherwise, creates a new OperatorCode using the given `builtin`
      // operator and associates it with `op_name`.
      uint32_t GetOpcodeIndex(const std::string& op_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    using these rules.
    </p>
    
    
    <h3 id="Identifiers">Identifiers</h3>
    
    <p>
    Identifiers name program entities such as variables and types.
    An identifier is a sequence of one or more letters and digits.
    The first character in an identifier must be a letter.
    </p>
    <pre class="ebnf">
    identifier = letter { letter | unicode_digit } .
    </pre>
    <pre>
    a
    _x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

          },
          "io.k8s.api.flowcontrol.v1beta3.FlowSchema": {
            "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

          },
          "io.k8s.api.flowcontrol.v1.FlowSchema": {
            "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
        output_graphdef = output_loader.get_meta_graph_def_from_tags(tags).graph_def
        self.assertTrue(self._contains_quantized_function_call(output_graphdef))
    
        # Makes sure that the original function identified by the signature key
        # `main` is renamed to `main_0` (see `InsertMainFunctionPass` for details).
        self.assertTrue(
            any(
                map(
                    lambda func: func.signature.name == 'main_0',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	return fmt.Sprintf("stat %d %x %v %v\n", info.Size(), uint64(info.Mode()), info.ModTime(), info.IsDir())
    }
    
    // gccCompilerID returns a build cache key for the current gcc,
    // as identified by running 'compiler'.
    // The caller can use subkeys of the key.
    // Other parts of cmd/go can use the id as a hash
    // of the installed compiler version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

          - group: "scheduling.k8s.io"
          - group: "storage.k8s.io"'
    
      cat <<EOF >"${path}"
    apiVersion: audit.k8s.io/v1
    kind: Policy
    rules:
      # The following requests were manually identified as high-volume and low-risk,
      # so drop them.
      - level: None
        users: ["system:kube-proxy"]
        verbs: ["watch"]
        resources:
          - group: "" # core
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.5.md

    * Docker versions 1.10.3 - 1.12.3
      * Docker version 1.11.2 known issues
        - Kernel crash with Aufs storage driver on Debian Jessie ([#27885]((https://github.com/kubernetes/kubernetes/issues/27885))
          which can be identified by the [node problem detector](http://kubernetes.io/docs/admin/node-problem/)
        - Leaked File descriptors ([#275](https://github.com/docker/containerd/issues/275))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    
      let results = (outs);
    }
    
    def TFL_ReadVariableOp : TFL_Op<"read_variable", []> {
      let summary = "Reads variable value.";
    
      let description = [{
    Read variable data identified by 'resource_id'.
      }];
    
      let arguments = (ins
        TFL_ResourceTensor:$resource_id
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top