Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Tabelle (0.3 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)
  3. docs/fr/docs/tutorial/path-params.md

    ## Validation de données
    
    Si vous allez sur <a href="http://127.0.0.1:8000/items/foo" class="external-link" target="_blank">http://127.0.0.1:8000/items/foo</a>, vous aurez une belle erreur HTTP :
    
    ```JSON
    {
        "detail": [
            {
                "loc": [
                    "path",
                    "item_id"
                ],
                "msg": "value is not a valid integer",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

      toco_log_after.SerializeToOstream(&ostream_after);
      ostream_after.close();
      toco::LogDump(toco::kLogLevelModelChanged, "tflite_graph", *flatbuffer_model);
    }
    
    // NOTE(aselle): We are using raw PyObject's here because we want to make
    // sure we input and output bytes rather than unicode strings for Python3.
    PyObject* Convert(PyObject* model_flags_proto_txt_raw,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/go/build/read.go

    // block of comments in the file.
    //
    // readComments should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bazelbuild/bazel-gazelle
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname readComments
    func readComments(f io.Reader) ([]byte, error) {
    	r := newImportReader("", f)
    	r.peekByte(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/value.h

                      tensorflow::DataType dtype)
            : tensor_spec({shape, dtype}) {}
        ~Data() {}
        Float32 f32;
        Int64 i64;
        String s;
        Func func;
        // TODO(aselle): look at tensorflow thing
        std::shared_ptr<impl::Dict> dict;
        std::shared_ptr<impl::List> list;
        std::shared_ptr<impl::Tuple> tuple;
        impl::Capsule capsule;
        TaggedValueTensor tensor;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      L2_NORMALIZATION = 11,
      L2_POOL_2D = 12,
      LOCAL_RESPONSE_NORMALIZATION = 13,
      LOGISTIC = 14,
      LSH_PROJECTION = 15,
      LSTM = 16,
      MAX_POOL_2D = 17,
      MUL = 18,
      RELU = 19,
      // NOTE(aselle): RELU_N1_TO_1 used to be called RELU1, but it was renamed
      // since different model developers use RELU1 in different ways. Never
      // create another op called RELU1.
      RELU_N1_TO_1 = 20,
      RELU6 = 21,
      RESHAPE = 22,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema.fbs

      L2_NORMALIZATION = 11,
      L2_POOL_2D = 12,
      LOCAL_RESPONSE_NORMALIZATION = 13,
      LOGISTIC = 14,
      LSH_PROJECTION = 15,
      LSTM = 16,
      MAX_POOL_2D = 17,
      MUL = 18,
      RELU = 19,
      // NOTE(aselle): RELU_N1_TO_1 used to be called RELU1, but it was renamed
      // since different model developers use RELU1 in different ways. Never
      // create another op called RELU1.
      RELU_N1_TO_1 = 20,
      RELU6 = 21,
      RESHAPE = 22,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. src/go/build/build.go

    }
    
    // parseFileHeader should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bazelbuild/bazel-gazelle
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname parseFileHeader
    func parseFileHeader(content []byte) (trimmed, goBuild []byte, sawBinaryOnly bool, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    // samples end up running on systemstack.
    func labelHog(stop chan struct{}, gogc int) {
    	// Regression test for issue 50032. We must give GC an opportunity to
    	// be initially triggered by a labelled goroutine.
    	runtime.GC()
    
    	for i := 0; ; i++ {
    		select {
    		case <-stop:
    			return
    		default:
    			debug.SetGCPercent(gogc)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top