Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Tabelle (0.06 sec)

  1. src/crypto/tls/ech.go

    		return false
    	}
    	labels := strings.Split(name, ".")
    	if len(labels) <= 1 {
    		return false
    	}
    	for _, l := range labels {
    		labelLen := len(l)
    		if labelLen == 0 {
    			return false
    		}
    		for i, r := range l {
    			if r == '-' && (i == 0 || i == labelLen-1) {
    				return false
    			}
    			if (r < '0' || r > '9') && (r < 'a' || r > 'z') && (r < 'A' || r > 'Z') && r != '-' {
    				return false
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/flatbuffer_compatibility_test.cc

      }
      return true;
    }
    
    // Checks to make sure current schema in current code does not cause an
    // incompatibility.
    TEST(SchemaTest, TestCompatibility) {
      // Read file contents of schemas into strings
      // TODO(aselle): Need a reliable way to load files.
      std::string base_contents, current_contents;
      const char *base_filename = TFLITE_TF_PREFIX
          "compiler/mlir/lite/schema/schema_v3b.fbs";
      const char *current_filename =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top