Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 212 for endPos (0.11 sec)

  1. docs/zh-hant/docs/index.md

    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor -%}
    {%- for sponsor in sponsors.silver -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    <!-- /sponsors -->
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tfcompile.bzl

        Args:
          name: The name of the build rule.
          graph: The TensorFlow GraphDef to compile.  If the file ends in '.pbtxt'
            it is expected to be in the human-readable proto text format, otherwise
            it is expected to be in the proto binary format.
          config: File containing tensorflow.tf2xla.Config proto.  If the file ends
            in '.pbtxt' it is expected to be in the human-readable proto text
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. docs/ko/docs/index.md

    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor -%}
    {%- for sponsor in sponsors.silver -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    <!-- /sponsors -->
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. src/net/textproto/reader.go

    // to a method on r.
    //
    // Dot encoding is a common framing used for data blocks
    // in text protocols such as SMTP.  The data consists of a sequence
    // of lines, each of which ends in "\r\n".  The sequence itself
    // ends at a line containing just a dot: ".\r\n".  Lines beginning
    // with a dot are escaped with an additional dot to avoid
    // looking like the end of the sequence.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. docs/yo/docs/index.md

    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor -%}
    {%- for sponsor in sponsors.silver -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    <!-- /sponsors -->
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. pkg/util/taints/taints_test.go

    			spec:        []string{"foo=-starts-with-dash:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec taint value with end with an non-alphanumeric character '-'",
    			spec:        []string{"foo=ends-with-dash-:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec taint value with start with an non-alphanumeric character '.'",
    			spec:        []string{"foo=.starts.with.dot:NoSchedule"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  7. pilot/pkg/security/model/authentication.go

    		CertificatePath:   proxy.Metadata.TLSServerCertChain,
    		PrivateKeyPath:    proxy.Metadata.TLSServerKey,
    		CaCertificatePath: proxy.Metadata.TLSServerRootCert,
    	}
    
    	// TODO: if subjectAltName ends with *, create a prefix match as well.
    	// TODO: if user explicitly specifies SANs - should we alter his explicit config by adding all spifee aliases?
    	matchSAN := util.StringToExactMatch(subjectAltNames)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/script/engine.go

    //
    // Execute stops and returns an error at the first command that does not succeed.
    // The returned error's text begins with "file:line: ".
    //
    // If the script runs to completion or ends by a 'stop' command,
    // Execute returns nil.
    //
    // Execute does not stop background commands started by the script
    // before returning. To stop those, use [State.CloseAndWait] or the
    // [Wait] command.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/link.go

    	To       Addr      // destination operand (second is RegTo2 below)
    	Pool     *Prog     // constant pool entry, for arm,arm64 back ends
    	Forwd    *Prog     // for x86 back end
    	Rel      *Prog     // for x86, arm back ends
    	Pc       int64     // for back ends or assembler: virtual or actual program counter, depending on phase
    	Pos      src.XPos  // source position of this instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

          })) {
        return errors::FailedPrecondition("op node '", op_name.str(),
                                          "' was not a TF op!");
      }
      // Control dialect NextIteration sink ends with ".sink" and Executor dialect
      // NextIteration sink ends with ".Sink".
      if (!op_name.consume_back(".sink")) op_name.consume_back(".Sink");
      return op_name;
    }
    
    absl::StatusOr<std::unique_ptr<NodeDef>> GetOperationNodeDef(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top