Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 812 for para1 (0.09 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocConverterTest.groovy

            format(result.docbook) == '''<para><emphasis>para 1</emphasis></para><para>para 2</para>'''
        }
    
        def ignoresEmptyPElements() {
            _ * classMetaData.rawCommentText >> 'para 1<p/><p></p>para 2<p></p>'
    
            when:
            def result = parser.parse(classMetaData, listener)
    
            then:
            format(result.docbook) == '''<para>para 1</para><para>para 2</para>'''
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 14.2K bytes
    - Viewed (0)
  2. test/escape_reflect.go

    func interface4(x *int) any { // ERROR "leaking param: x$"
    	v := reflect.ValueOf(x)
    	return v.Interface()
    }
    
    func addr(x *int) reflect.Value { // ERROR "leaking param: x to result ~r0 level=0"
    	v := reflect.ValueOf(x).Elem()
    	return v.Addr()
    }
    
    // functions returning pointer as uintptr have to escape.
    func uintptr1(x *int) uintptr { // ERROR "leaking param: x$"
    	v := reflect.ValueOf(x)
    	return v.Pointer()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. tests/test_path.py

        response = client.get("/path/param/foo")
        assert response.status_code == 200
        assert response.json() == "foo"
    
    
    def test_path_param_minlength_foo():
        response = client.get("/path/param-minlength/foo")
        assert response.status_code == 200
        assert response.json() == "foo"
    
    
    def test_path_param_minlength_fo():
        response = client.get("/path/param-minlength/fo")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/DfsImpl.java

                dr = null;
            }
            return dr;
        }
    
    
        /**
         * @param tf
         * @param domain
         * @param root
         * @param path
         * @param rootDr
         * @param now
         * @param links
         * @return
         * @throws SmbAuthException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

         * オブジェクトを{@link Date}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @return 変換された{@link Date}
         */
        public static Date toDate(final Object src) {
            return toDate(src, null, LocaleUtil.getDefault());
        }
    
        /**
         * オブジェクトを{@link Date}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/StringUtil.java

         */
        public static final boolean isNotEmpty(final String text) {
            return !isEmpty(text);
        }
    
        /**
         * 文字列を置き換えます。
         *
         * @param text
         *            テキスト
         * @param fromText
         *            置き換え対象のテキスト
         * @param toText
         *            置き換えるテキスト
         * @return 結果
         */
        public static final String replace(final String text, final String fromText, final String toText) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/Type2Message.java

        /**
         * Creates a Type-2 message in response to the given Type-1 message.
         * 
         * @param tc
         *            context to use
         * @param type1
         *            The Type-1 message which this represents a response to.
         * @param challenge
         *            The challenge from the domain controller/server.
         * @param target
         *            The authentication target.
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.4K bytes
    - Viewed (0)
  8. maven-model/src/main/java/org/apache/maven/model/InputLocation.java

         */
        public InputSource getSource() {
            return this.source;
        } // -- InputSource getSource()
    
        /**
         * Method merge.
         *
         * @param target
         * @param sourceDominant
         * @param source
         * @return InputLocation
         */
        public static InputLocation merge(InputLocation target, InputLocation source, boolean sourceDominant) {
            if (source == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 19 07:06:15 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/DcerpcHandle.java

            }
    
            DcerpcException de;
            if ( ( de = msg.getResult() ) != null ) {
                throw de;
            }
        }
    
    
        /**
         * @param msg
         * @param out
         * @param buf
         * @param off
         * @param tot
         * @return
         * @throws IOException
         */
        private int sendFragments ( DcerpcMessage msg, byte[] out, NdrBuffer buf ) throws IOException {
            int off = 0;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

         * オブジェクトを{@link Date}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @return 変換された{@link Date}
         */
        public static Date toDate(final Object src) {
            return toDate(src, null, LocaleUtil.getDefault());
        }
    
        /**
         * オブジェクトを{@link Date}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top