Search Options

Results per page
Sort
Preferred Languages
Advance

Results 551 - 560 of 1,903 for station (0.05 sec)

  1. src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords_details.jsp

                                        key="labels.dict_protwords_link_details"/></li>
                            </ol>
                        </div>
                    </div>
                </div>
            </div>
            <section class="content">
                <la:form action="/admin/dict/protwords/">
                    <la:hidden property="crudMode"/>
                    <la:hidden property="dictId"/>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 7.2K bytes
    - Viewed (0)
  2. cmd/peer-s3-server.go

    		index := index
    		g.Go(func() error {
    			if localDrives[index] == nil {
    				return errDiskNotFound
    			}
    			volInfo, err := localDrives[index].StatVol(ctx, bucket)
    			if err != nil {
    				if opts.Deleted {
    					dvi, derr := localDrives[index].StatVol(ctx, pathJoin(minioMetaBucket, bucketMetaPrefix, deletedBucketsPrefix, bucket))
    					if derr != nil {
    						return err
    					}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 22 21:57:20 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/exentity/FileAuthentication.java

    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author FreeGen
     */
    public class FileAuthentication extends BsFileAuthentication {
    
        private static final long serialVersionUID = 1L;
    
        private static final Logger logger = LogManager.getLogger(FileAuthentication.class);
    
        private FileConfig fileConfig;
    
        public String getId() {
            return asDocMeta().id();
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/converter/NumberConverter.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans.converter;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.text.DecimalFormat;
    import java.text.ParseException;
    
    import org.codelibs.core.beans.Converter;
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java

     */
    public abstract class BooleanConversionUtil {
    
        /**
         * {@link Boolean}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @return 変換された{@link Boolean}
         */
        public static Boolean toBoolean(final Object o) {
            if (o == null) {
                return null;
            } else if (o instanceof Boolean) {
                return (Boolean) o;
            } else if (o instanceof Number) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    ///
    
    ## Dependencies with `yield`, `HTTPException`, `except` and Background Tasks
    
    /// warning
    
    You most probably don't need these technical details, you can skip this section and continue below.
    
    These details are useful mainly if you were using a version of FastAPI prior to 0.106.0 and used resources from dependencies with `yield` in background tasks.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java

    import jakarta.annotation.Resource;
    
    /**
     * @author shinsuke
     */
    public class AdminRelatedcontentAction extends FessAdminAction {
    
        public static final String ROLE = "admin-relatedcontent";
    
        private static final Logger logger = LogManager.getLogger(AdminRelatedcontentAction.class);
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java

    import jakarta.annotation.Resource;
    
    /**
     * @author shinsuke
     */
    public class AdminBoostdocAction extends FessAdminAction {
    
        public static final String ROLE = "admin-boostdoc";
    
        private static final Logger logger = LogManager.getLogger(AdminBoostdocAction.class);
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionForEachTester.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect.testing.testers;
    
    import static com.google.common.collect.testing.features.CollectionFeature.KNOWN_ORDER;
    import static java.util.Arrays.asList;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.testing.AbstractCollectionTester;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. guava-tests/benchmark/com/google/common/collect/MultipleSetContainsBenchmark.java

      double emptySetProportion;
    
      @Param({"0.0", "0.1", "0.7", "1.0"})
      double singletonSetProportion;
    
      @Param({"0.2", "0.8"})
      double hitRate;
    
      static final Object PRESENT = new Object();
      static final Object ABSENT = new Object();
    
      private final ImmutableSet<?>[] sets = new ImmutableSet<?>[0x1000];
    
      private final Object[] queries = new Object[0x1000];
    
      @BeforeExperiment
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top