Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dataValue (0.04 sec)

  1. docs/en/docs/js/custom.js

                                if (line) {
                                    isBlankSpace = false;
                                }
                            });
                            dataValue = {};
                            if (isBlankSpace) {
                                dataValue["delay"] = 0;
                            }
                            if (buffer[buffer.length - 1] === "") {
                                // A last single <br> won't have effect
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Sep 22 15:11:52 UTC 2025
    - 6.3K bytes
    - Viewed (2)
  2. tests/serializer_test.go

    	}
    
    	if result.Data != nil {
    		t.Errorf("expected Data to be nil, got %v", result.Data)
    	}
    
    	// Test with non-nil value
    	dataValue := map[string]interface{}{"key": "value"}
    	product2 := ProductWithAny{Name: "Product 2", Data: dataValue}
    	if err := DB.Create(&product2).Error; err != nil {
    		t.Fatalf("failed to create product with non-nil any field, got error %v", err)
    	}
    
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Sat Nov 22 03:14:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top