Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for array_v1 (0.18 sec)

  1. src/main/java/org/codelibs/core/collection/ArrayUtil.java

         *            配列の要素の型
         * @param array1
         *            配列1
         * @param array2
         *            配列2
         * @return 順番は無視して2つの配列が等しければ{@literal true}
         */
        public static <T> boolean equalsIgnoreSequence(final T[] array1, final T[] array2) {
            if (array1 == null && array2 == null) {
                return true;
            } else if (array1 == null || array2 == null) {
                return false;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      const TestPartResult& GetTestPartResult(int index) const;
    
      // Returns the number of TestPartResult objects in the array.
      int size() const;
    
     private:
      std::vector<TestPartResult> array_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray);
    };
    
    // This interface knows how to report a test part result.
    class TestPartResultReporterInterface {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      const TestPartResult& GetTestPartResult(int index) const;
    
      // Returns the number of TestPartResult objects in the array.
      int size() const;
    
     private:
      std::vector<TestPartResult> array_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray);
    };
    
    // This interface knows how to report a test part result.
    class TestPartResultReporterInterface {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. docs/sts/wso2.md

    | iss        | _string_       | The issuer of the JWT. The '> Identity Provider Entity Id ' value of the OAuth2/OpenID Connect Inbound Authentication configuration of the Resident Identity Provider is returned here. |
    | aud        | _string array_ | The token audience list. The client identifier of the OAuth clients that the JWT is intended for, is sent herewith.                                                                     |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    	if err != nil {
    		t.Fatal("exec wipe", err)
    	}
    
    	_, err = db.ExecContext(ctx, "CREATE|keys|dec1=any,str1=string,out1=string,array1=any")
    	if err != nil {
    		t.Fatal("exec create", err)
    	}
    
    	o1 := ""
    	_, err = db.ExecContext(ctx, "INSERT|keys|dec1=?A,str1=?,out1=?O1,array1=?", Named("A", decimalInt{123}), "hello", Named("O1", Out{Dest: &o1}), []int64{42, 128, 707}, doNotInclude{})
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. test-site/activator-launch-1.3.2.jar

    e/ResizableArray.class package scala.collection.mutable; public abstract interface ResizableArray extends scala.collection.IndexedSeqOptimized, IndexedSeq { public abstract int initialSize(); public abstract Object[] array(); public abstract void array_$eq(Object[]); public abstract int size0(); public abstract void size0_$eq(int); public abstract int length(); } scala/collection/mutable/MapLike.class package scala.collection.mutable; public abstract interface MapLike extends scala.Cloneable, sc...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top