Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 102 for dial (0.04 sec)

  1. src/net/lookup_windows_test.go

    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		ptr = append(ptr, absDomainName(ans[1]))
    	}
    	return
    }
    
    func localIP() (ip IP, err error) {
    	conn, err := Dial("udp", "golang.org:80")
    	if err != nil {
    		return nil, err
    	}
    	defer conn.Close()
    
    	localAddr := conn.LocalAddr().(*UDPAddr)
    
    	return localAddr.IP, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/pprof/pprof.go

    	// url.Parse will recognize it as a link and ultimately report an error,
    	// similar to `abc:123/mem_2023-11-02_03:55:24:
    	// Get "http://abc:123/mem_2023-11-02_03:55:24": dial tcp: lookup abc: no such host`
    	if _, openErr := os.Stat(src); openErr == nil {
    		return nil, "", nil
    	}
    	sourceURL, timeout := adjustURL(src, duration, timeout)
    	if sourceURL == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. samples/helloworld/helloworld-dual-stack.yaml

    John Howard <******@****.***> 1710626582 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. samples/tcp-echo/tcp-echo-dual-stack.yaml

    John Howard <******@****.***> 1710626582 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/metrics/error_collector_inst.cc

        : error_collector_(ErrorCollector::GetErrorCollector()) {
      handler_ = std::make_unique<ScopedDiagnosticHandler>(
          context, [this](Diagnostic &diag) {
            if (diag.getSeverity() == DiagnosticSeverity::Error) {
              Location loc = diag.getLocation();
              std::string error_message = diag.str();
              std::string op_name, error_code;
              if (loc_to_name_.count(loc)) {
                op_name = loc_to_name_[loc];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_address.go

    	wildCards = map[model.IPMode][]string{
    		model.IPv4: {WildcardAddress},
    		model.IPv6: {WildcardIPv6Address},
    		model.Dual: {WildcardAddress, WildcardIPv6Address},
    	}
    
    	localHosts = map[model.IPMode][]string{
    		model.IPv4: {LocalhostAddress},
    		model.IPv6: {LocalhostIPv6Address},
    		model.Dual: {LocalhostAddress, LocalhostIPv6Address},
    	}
    
    	passthroughBindIPs = map[model.IPMode][]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/fuse_convolution_pass.cc

            diag << "entities 'mul_value' failed to satisfy constraint: "
                    "unsupported dimensions";
          });
        }
        if (!is_dynamic_broadcast &&
            !((*conv_op.getODSResults(0).begin()).hasOneUse())) {
          return rewriter.notifyMatchFailure(mul_op, [&](::mlir::Diagnostic &diag) {
            diag << "entities 'conv' failed to satisfy constraint: has one use";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 22:21:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/local/context.go

    func (i *istiodContext) Report(c config.GroupVersionKind, m diag.Message) {
    	msgs := i.messages[i.currentAnalyzer]
    	if msgs == nil {
    		msgs = &diag.Messages{}
    		i.messages[i.currentAnalyzer] = msgs
    	}
    	msgs.Add(m)
    }
    
    func (i *istiodContext) SetAnalyzer(analyzerName string) {
    	i.currentAnalyzer = analyzerName
    }
    
    func (i *istiodContext) GetMessages(analyzerNames ...string) diag.Messages {
    	result := diag.Messages{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/metrics/error_collector_inst.h

    inline InFlightDiagnostic AttachErrorCode(InFlightDiagnostic &&diag,
                                              int error_code) {
      using tflite::metrics::ConverterErrorData;
      diag.attachNote() << kErrorCodePrefix
                        << ConverterErrorData::ErrorCode_Name(error_code);
      return std::move(diag);
    }
    
    }  // namespace TFL
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

                fileLoc.getFilename().str());
          } else {
            // If this is a non-FileLineColLoc, go ahead and include it.
            return true;
          }
        };
      }
    
      setHandler([this](Diagnostic& diag) { return this->handler(&diag); });
    }
    
    Status StatusScopedDiagnosticHandler::ConsumeStatus() {
      return BaseScopedDiagnosticHandler::ConsumeStatus();
    }
    
    Status StatusScopedDiagnosticHandler::Combine(Status status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top