Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 713 for true (0.12 sec)

  1. src/main/webapp/WEB-INF/view/index.jsp

    											<a class="nav-link dropdown-toggle" data-toggle="dropdown"
    												href="#" role="button" aria-haspopup="true"
    												aria-expanded="false"> <em class="fa fa-fw fa-user">${username}
    											</a>
    											<div class="dropdown-menu" aria-labelledby="userMenu">
    												<c:if test="${editableUser == true}">
    													<la:link href="/profile" styleClass="dropdown-item">
    														<la:message key="labels.profile" />
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 6.9K bytes
    - Viewed (1)
  2. src/test/java/org/codelibs/core/collection/IndexedIteratorTest.java

            list.add("aaa");
            list.add("bbb");
            list.add("ccc");
    
            final IndexedIterator<String> it = new IndexedIterator<String>(list.iterator());
    
            assertThat(it.hasNext(), is(true));
    
            final Indexed<String> indexed1 = it.next();
            assertThat(indexed1.getIndex(), is(0));
            assertThat(indexed1.getElement(), is("aaa"));
    
            final Indexed<String> indexed2 = it.next();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SpnegoContext.java

            }
            catch ( IllegalArgumentException e ) {
                log.error("Failed to initialize OID", e);
            }
        }
    
        private SSPContext mechContext;
    
        private boolean firstResponse = true;
        private boolean completed;
    
        private ASN1ObjectIdentifier[] mechs;
        private ASN1ObjectIdentifier selectedMech;
        private ASN1ObjectIdentifier[] remoteMechs;
    
        private boolean disableMic;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            QueryThread q1x = new QueryThread(sem, name, type, null, svr, this.transportContext);
            QueryThread q20 = new QueryThread(sem, name, 0x20, null, svr, this.transportContext);
            q1x.setDaemon(true);
            q20.setDaemon(true);
            try {
                synchronized ( sem ) {
                    q1x.start();
                    q20.start();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

            }
    
            if (includedDocUrlPatterns.length == 0 && excludedDocUrlPatterns.length == 0) {
                return Constants.TRUE;
            }
    
            for (final Pattern pattern : includedDocUrlPatterns) {
                if (pattern.matcher(input).matches()) {
                    return Constants.TRUE;
                }
            }
    
            for (final Pattern pattern : excludedDocUrlPatterns) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  6. pom.xml

    							<includeScope>provided</includeScope>
    							<outputDirectory>${project.build.directory}/tomcat-lib</outputDirectory>
    							<includes>**/*</includes>
    							<overWriteReleases>true</overWriteReleases>
    							<overWriteSnapshots>true</overWriteSnapshots>
    						</configuration>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<artifactId>maven-surefire-plugin</artifactId>
    				<configuration>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbTree.java

        
                tid = response.tid;
                service = response.service;
                inDfs = response.shareIsInDfs;
                tree_num = tree_conn_counter++;
        
                connectionState = 2; // connected
            } catch (SmbException se) {
                treeDisconnect(true);
                connectionState = 0;
                throw se;
            }
    }
        }
        void treeDisconnect( boolean inError ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/misc/Pair.java

            return result;
        }
    
        @Override
        public boolean equals(final Object obj) {
            if (this == obj) {
                return true;
            }
            if (obj == null) {
                return false;
            }
            if (getClass() != obj.getClass()) {
                return false;
            }
            @SuppressWarnings("unchecked")
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/misc/Tuple3.java

            return result;
        }
    
        @Override
        public boolean equals(final Object obj) {
            if (this == obj) {
                return true;
            }
            if (obj == null) {
                return false;
            }
            if (getClass() != obj.getClass()) {
                return false;
            }
            @SuppressWarnings("unchecked")
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/test/resources/log4j.properties

    log4j.rootLogger=WARN,STDOUT
    log4j.appender.STDOUT=org.apache.log4j.ConsoleAppender
    log4j.appender.STDOUT.ImmediateFlush=true
    log4j.appender.STDOUT.layout=org.apache.log4j.PatternLayout
    log4j.appender.STDOUT.layout.ConversionPattern=%-5p %d [%t] %m%n
    
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 283 bytes
    - Viewed (0)
Back to top