Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 89 for representing (0.14 sec)

  1. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

        }
      }
    
      private static final Object PRED = new Object();
    
      // Every value in this map must either be an instance of PredAndSucc with a successorValue of
      // type V, PRED (representing predecessor), or an instance of type V (representing successor).
      private final Map<N, Object> adjacentNodeValues;
    
      /**
       * All node connections in this graph, in edge insertion order.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/ConstructorDesc.java

         */
        boolean isParameterized(int index);
    
        /**
         * Returns an array of {@link ParameterizedClassDesc} representing the parameter types of the method.
         *
         * @return An array of {@link ParameterizedClassDesc} representing the parameter types of the method
         */
        ParameterizedClassDesc[] getParameterizedClassDescs();
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/InetAddresses.java

      private InetAddresses() {}
    
      /**
       * Returns an {@link Inet4Address}, given a byte array representation of the IPv4 address.
       *
       * @param bytes byte array representing an IPv4 address (should be of length 4)
       * @return {@link Inet4Address} corresponding to the supplied byte array
       * @throws IllegalArgumentException if a valid {@link Inet4Address} can not be created
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java

         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
         * The timestamp when this elevate word configuration was last updated.
         * Stored as a long value representing milliseconds since epoch.
         * Used for audit trail and concurrency control.
         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java

         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
         * The timestamp when this request header configuration was last updated.
         * Stored as a long value representing milliseconds since epoch.
         * Used for audit trail and concurrency control.
         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

                }
            }
        }
    
        /**
         * Returns a {@link File} representing the directory corresponding to the root package.
         *
         * @param rootDir the root directory
         * @param rootPackage the root package
         * @return a {@link File} representing the directory corresponding to the package
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/LinearTransformation.java

        }
      }
    
      /**
       * Builds an instance representing a vertical transformation with a constant value of {@code x}.
       * (The inverse of this will be a horizontal transformation.)
       */
      public static LinearTransformation vertical(double x) {
        checkArgument(isFinite(x));
        return new VerticalLinearTransformation(x);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * An API for representing graph (node and edge) data. It is analogous to the Java Collections
     * Framework APIs for lists, maps, sets, etc.
     *
     * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java

         */
        public String expiredTime;
    
        /**
         * The timestamp when this crawling session was created.
         * Stored as a long value representing milliseconds since epoch.
         */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
         * Initializes the form with default null values.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/TraversalUtil.java

            return className.replace('.', '/') + ".class";
        }
    
        /**
         * Returns the base directory above the root package from a URL representing a file.
         *
         * @param url
         *            The URL representing the file.
         * @param baseName
         *            The base name.
         * @return The base directory above the root package.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top