Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,013 for alocale (0.32 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/StopTokenPrefixFilterFactory.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.opensearch.extension.analysis;
    
    import java.util.List;
    import java.util.Locale;
    
    import org.apache.lucene.analysis.TokenStream;
    import org.codelibs.analysis.ja.StopTokenPrefixFilter;
    import org.opensearch.common.settings.Settings;
    import org.opensearch.env.Environment;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/IncrementalProcessingEnvironment.java

    import javax.annotation.processing.ProcessingEnvironment;
    import javax.lang.model.SourceVersion;
    import javax.lang.model.util.Elements;
    import javax.lang.model.util.Types;
    import java.util.Locale;
    import java.util.Map;
    
    /**
     * A decorator for the {@link ProcessingEnvironment} provided by the Java compiler,
     * which allows us to intercept calls from annotation processors in order to validate
     * their behavior.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/storage/storage_test.go

    	defer destroyFunc()
    	if err := storage.Allocate(netutils.ParseIPSloppy("192.168.1.2")); !strings.Contains(err.Error(), "cannot allocate resources of type serviceipallocations at this time") {
    		t.Fatal(err)
    	}
    }
    
    func TestErrors(t *testing.T) {
    	_, storage, _, _, destroyFunc := newStorage(t)
    	defer destroyFunc()
    	err := storage.Allocate(netutils.ParseIPSloppy("192.168.0.0"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/convert/DateConversionUtilTest.java

    import java.util.Calendar;
    import java.util.Date;
    import java.util.Locale;
    
    import org.codelibs.core.misc.LocaleUtil;
    import org.junit.After;
    import org.junit.Before;
    import org.junit.Test;
    
    /**
     * @author higa
     */
    public class DateConversionUtilTest {
    
        @Before
        public void setUp() throws Exception {
            LocaleUtil.setDefault(() -> Locale.JAPANESE);
        }
    
        @After
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/ServiceTest.java

    import static com.google.common.util.concurrent.Service.State.STARTING;
    import static com.google.common.util.concurrent.Service.State.STOPPING;
    import static com.google.common.util.concurrent.Service.State.TERMINATED;
    
    import java.util.Locale;
    import junit.framework.TestCase;
    
    /** Unit tests for {@link Service} */
    public class ServiceTest extends TestCase {
    
      /** Assert on the comparison ordering of the State enum since we guarantee it. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/BooleanQuestionPromptEvent.java

    package org.gradle.internal.logging.events;
    
    import com.google.common.collect.Lists;
    import org.apache.commons.lang.BooleanUtils;
    import org.apache.commons.lang.StringUtils;
    
    import java.util.List;
    import java.util.Locale;
    
    public class BooleanQuestionPromptEvent extends PromptOutputEvent {
        private static final List<String> LENIENT_YES_NO_CHOICES = Lists.newArrayList("yes", "no", "y", "n");
        private final String question;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pkg/registry/core/service/allocator/bitmap_test.go

    	// Allocate all possible values except the reserved
    	for i := dynamicOffset; i < max; i++ {
    		if ok, _ := m.Allocate(i); !ok {
    			t.Errorf("error allocate i %v", i)
    		} else {
    			allocated++
    		}
    	}
    	// Allocate all the values of the reserved block except one
    	for i := 0; i < dynamicOffset-1; i++ {
    		if ok, _ := m.Allocate(i); !ok {
    			t.Errorf("error allocate i %v", i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 10 08:56:31 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/DefaultJansiRuntimeResolver.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.nativeintegration.jansi;
    
    import java.util.Locale;
    
    import static org.gradle.internal.nativeintegration.jansi.JansiOperatingSystemSupport.*;
    
    /**
     * Portions of this class have been copied from org.fusesource.hawtjni.runtime.Library.java,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

            final List<Map<String, String>> itemList = new ArrayList<>();
            final Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.file_auth_scheme_samba"), Constants.SAMBA));
            itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.file_auth_scheme_ftp"), Constants.FTP));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. src/time/zoneinfo_unix.go

    package time
    
    import (
    	"syscall"
    )
    
    // Many systems use /usr/share/zoneinfo, Solaris 2 has
    // /usr/share/lib/zoneinfo, IRIX 6 has /usr/lib/locale/TZ,
    // NixOS has /etc/zoneinfo.
    var platformZoneSources = []string{
    	"/usr/share/zoneinfo/",
    	"/usr/share/lib/zoneinfo/",
    	"/usr/lib/locale/TZ/",
    	"/etc/zoneinfo",
    }
    
    func initLocal() {
    	// consult $TZ to find the time zone to use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 04 02:26:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top