Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,092 for Trailing (0.12 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

    fun String.canParseAsIpAddress(): Boolean = VERIFY_AS_IP_ADDRESS.matches(this)
    
    /**
     * Returns true if the length is not valid for DNS (empty or greater than 253 characters), or if any
     * label is longer than 63 characters. Trailing dots are okay.
     */
    internal fun String.containsInvalidLabelLengths(): Boolean {
      if (length !in 1..253) return true
    
      var labelStart = 0
      while (true) {
        val dot = indexOf('.', startIndex = labelStart)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/cmd/dist/testjson.go

    			if found {
    				data, err := json.Marshal(val)
    				if err != nil {
    					// Should never happen.
    					panic(fmt.Sprintf("failed to round-trip JSON %q: %s", line, err))
    				}
    				f.w.Write(data)
    				// Copy any trailing text. We expect at most a "\n" here, but
    				// there could be other text and we want to feed that through.
    				io.Copy(f.w, dec.Buffered())
    				return
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

     *
     */
    public class SitemapUrl implements Sitemap {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * URL of the page. This URL must begin with the protocol (such as http) and
         * end with a trailing slash, if your web server requires it. This value
         * must be less than 2,048 characters.
         */
        private String loc;
    
        /**
         * The date of last modification of the file. This date should be in W3C
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/runtime/os3_plan9.go

    	// made a mistake somewhere in sigtramp.
    	if _ureg == nil || note == nil {
    		print("sighandler: ureg ", _ureg, " note ", note, "\n")
    		goto Throw
    	}
    	// Check that the note is no more than ERRMAX bytes (including
    	// the trailing NUL). We should never receive a longer note.
    	if len(notestr) > _ERRMAX-1 {
    		print("sighandler: note is longer than ERRMAX\n")
    		goto Throw
    	}
    	if isAbortPC(c.pc()) {
    		// Never turn abort into a panic.
    		goto Throw
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pkg/apis/certificates/validation/validation_test.go

    MnVCuBwfwDXCAiEAw/1TA+CjPq9JC5ek1ifR0FybTURjeQqYkKpve1d?????????
    -----END CERTIFICATE-----
    Trailing non-PEM content
    `)
    
    	invalidCertificateEmptyPEM = []byte(`
    Leading non-PEM content
    -----BEGIN CERTIFICATE-----
    -----END CERTIFICATE-----
    Trailing non-PEM content
    `)
    
    	// first character is invalid
    	invalidCertificateNonASN1Data = []byte(`
    Leading non-PEM content
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_util.h

             word_index++) {
          uint64 word = storage_[word_index];
          while (word != 0) {
            uint64 only_lowest_bit_set = word & -word;
            // The number of trailing zeros in a non-zero word is the index of the
            // least significant 1.
            int bit_index = absl::countr_zero(word);
            if (!func(DeviceId(word_index * kWordSize + bit_index))) {
              return;
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. src/mime/multipart/writer.go

    	p, err := w.CreateFormField(fieldname)
    	if err != nil {
    		return err
    	}
    	_, err = p.Write([]byte(value))
    	return err
    }
    
    // Close finishes the multipart message and writes the trailing
    // boundary end line to the output.
    func (w *Writer) Close() error {
    	if w.lastpart != nil {
    		if err := w.lastpart.close(); err != nil {
    			return err
    		}
    		w.lastpart = nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pkg/config/labels/instance.go

    	match := tagRegexp.FindStringSubmatch(k)
    	if match == nil {
    		return fmt.Errorf("invalid tag key: %q", k)
    	}
    
    	if len(match[1]) > 0 {
    		dnsPrefixLength := len(match[1]) - 1 // exclude the trailing / from the length
    		if dnsPrefixLength > dnsNamePrefixMaxLength {
    			return fmt.Errorf("invalid tag key: %q (DNS prefix is too long)", k)
    		}
    	}
    
    	if len(match[2]) > DNS1123LabelMaxLength {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. security/pkg/pki/util/crypto.go

    	default:
    		return nil, fmt.Errorf("private key is not ECDSA based")
    	}
    }
    
    // PemCertBytestoString: takes an array of PEM certs in bytes and returns a string array in the same order with
    // trailing newline characters removed
    func PemCertBytestoString(caCerts []byte) []string {
    	certs := []string{}
    	var cert string
    	pemBlock := caCerts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/utils/utils.cc

            tf_op_name.push_back('.');
            i++;
          }
          after_underscore = true;
        } else {
          tf_op_name.push_back(compose_func_name[i]);
        }
      }
      if (after_underscore) {
        // Trailing "_".
        return {};
      }
      return tf_op_name;
    }
    
    LogicalResult ValidateAttrs(Operation* src, const StringSet<>& registered) {
      for (auto& attr : src->getAttrs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top