Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 257 for 123Z (0.01 sec)

  1. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            tags = PrunedTag.parse("a.link,div#123");
            assertEquals(2, tags.length);
            assertEquals("PrunedTag [tag=a, id=null, css=link, attrName=null, attrValue=null]", tags[0].toString());
            assertEquals("PrunedTag [tag=div, id=123, css=null, attrName=null, attrValue=null]", tags[1].toString());
    
            tags = PrunedTag.parse("a#test-a");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. clause/order_by_test.go

    		},
    		{
    			[]clause.Interface{
    				clause.Select{}, clause.From{}, clause.OrderBy{
    					Expression: clause.Expr{SQL: "FIELD(id, ?)", Vars: []interface{}{[]int{1, 2, 3}}, WithoutParentheses: true},
    				},
    			},
    			"SELECT * FROM `users` ORDER BY FIELD(id, ?,?,?)",
    			[]interface{}{1, 2, 3},
    		},
    	}
    
    	for idx, result := range results {
    		t.Run(fmt.Sprintf("case #%v", idx), func(t *testing.T) {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/Kerb5ContextTest.java

            when(src.export()).thenReturn(buildExportName(new Oid("1.2.3"), "client"));
            when(targ.export()).thenReturn(buildExportName(new Oid("1.2.3"), "service"));
            when(gssContext.getSrcName()).thenReturn(src);
            when(gssContext.getTargName()).thenReturn(targ);
            when(gssContext.getMech()).thenReturn(new Oid("1.2.3"));
    
            assertNull(ctx.searchSessionKey(new javax.security.auth.Subject()));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            assertEquals(value, ResourceUtil.resolve(value));
    
            value = "${abc.xyz}";
            assertEquals(value, ResourceUtil.resolve(value));
    
            System.setProperty("abc", "123");
    
            value = "${abc}";
            assertEquals("123", ResourceUtil.resolve(value));
    
            value = "xxx${abc}zzz";
            assertEquals("xxx123zzz", ResourceUtil.resolve(value));
    
            value = "${abc.xyz}";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SecurityBlobTest.java

        @Test
        @DisplayName("equals: identical content and size -> true")
        void equals_identicalContent_true() {
            // Arrange
            byte[] a = new byte[] { 1, 2, 3 };
            byte[] b = new byte[] { 1, 2, 3 };
            SecurityBlob left = new SecurityBlob(a);
            SecurityBlob right = new SecurityBlob(b);
    
            // Act & Assert
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. docs/debugging/inspect/go.mod

    module github.com/minio/minio/docs/debugging/inspect
    
    go 1.23.0
    
    toolchain go1.24.2
    
    require (
    	github.com/klauspost/compress v1.17.11
    	github.com/klauspost/filepathx v1.1.1
    	github.com/minio/colorjson v1.0.8
    	github.com/minio/madmin-go/v3 v3.0.88
    	github.com/secure-io/sio-go v0.3.1
    	github.com/tinylib/msgp v1.2.5
    )
    
    require (
    	github.com/cespare/xxhash/v2 v2.3.0 // indirect
    	github.com/fatih/color v1.18.0 // indirect
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 24 23:34:11 UTC 2025
    - 722 bytes
    - Viewed (0)
  7. src/test/java/jcifs/pac/ASN1UtilTest.java

            ASN1Integer expected = new ASN1Integer(123);
            vector.add(expected);
            ASN1Integer result = ASN1Util.as(ASN1Integer.class, vector.elements());
            assertSame(expected, result);
        }
    
        @Test
        void testAs_Enumeration_Failure() {
            // Test failed casting from enumeration
            Vector<ASN1Integer> vector = new Vector<>();
            vector.add(new ASN1Integer(123));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb1/dcerpc/ndr/NdrShortTest.java

            NdrShort ns = new NdrShort(123); // masked value 123 (already fits in 8 bits)
            buf.reset();
            ns.encode(buf);
    
            // Reset buffer to start for decoding
            buf.reset();
    
            // Prepare a new object to decode into
            NdrShort decoded = new NdrShort(0);
            decoded.decode(buf);
            assertEquals(123, decoded.value, "decoded value should equal original");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  9. docs/debugging/s3-verify/go.mod

    module github.com/minio/minio/docs/debugging/s3-verify
    
    go 1.23.0
    
    toolchain go1.24.2
    
    require github.com/minio/minio-go/v7 v7.0.83
    
    require (
    	github.com/davecgh/go-spew v1.1.1 // indirect
    	github.com/dustin/go-humanize v1.0.1 // indirect
    	github.com/go-ini/ini v1.67.0 // indirect
    	github.com/goccy/go-json v0.10.4 // indirect
    	github.com/google/uuid v1.6.0 // indirect
    	github.com/klauspost/compress v1.17.11 // indirect
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Apr 22 11:16:32 UTC 2025
    - 803 bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

        public void test_append_integerValue() {
            StringBuilder buf = new StringBuilder();
            Supplier<Object> supplier = () -> Integer.valueOf(123);
    
            monitorTarget.append(buf, "intKey", supplier);
            assertEquals("\"intKey\":123", buf.toString());
        }
    
        // Test append method with Long value
        public void test_append_longValue() {
            StringBuilder buf = new StringBuilder();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top