Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 950 for avaliable (0.08 sec)

  1. src/main/java/jcifs/smb1/netbios/SocketInputStream.java

                if (r < 0) {
                    break;
                }
                n -= r;
            }
            return numbytes - n;
        }
        public int available() throws IOException {
            if( bip > 0 ) {
                return bip;
            }
            return in.available();
        }
        public void close() throws IOException {
            in.close();
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp

                                            <td><c:if test="${available=='on'}">
                                                <la:message key="labels.enabled"/>
                                            </c:if> <c:if test="${available!='on'}">
                                                <la:message key="labels.disabled"/>
                                            </c:if> <la:hidden property="available"/></td>
                                        </tr>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 12K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/TestInputStream.java

      public long skip(long n) throws IOException {
        throwIf(closed);
        throwIf(SKIP_THROWS);
        return in.skip(n);
      }
    
      @Override
      public int available() throws IOException {
        throwIf(closed);
        return options.contains(TestOption.AVAILABLE_ALWAYS_ZERO) ? 0 : in.available();
      }
    
      @Override
      public void close() throws IOException {
        closed = true;
        throwIf(CLOSE_THROWS);
        in.close();
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/internal/aether/LoggingRepositoryListener.java

                    "The POM for {} is invalid, transitive dependencies (if any) will not be available: {}",
                    event.getArtifact(),
                    event.getException().getMessage());
        }
    
        @Override
        public void artifactDescriptorMissing(RepositoryEvent event) {
            logger.warn("The POM for {} is missing, no dependency information available", event.getArtifact());
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/ScheduledJob.java

        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
            return "ScheduledJob [available=" + available + ", crawler=" + crawler + ", createdBy=" + createdBy + ", createdTime=" + createdTime
                    + ", cronExpression=" + cronExpression + ", jobLogging=" + jobLogging + ", name=" + name + ", scriptData=" + scriptData
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/WinError.java

            "All pipe instances are busy.",
            "The pipe is being closed.",
            "No process is on the other end of the pipe.",
            "More data is available.",
            "The list of servers for this workgroup is not currently available.",
        };
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  7. fastapi/param_functions.py

            Any,
            Doc(
                """
                Default value if the parameter field is not set.
    
                This doesn't affect `Path` parameters as the value is always required.
                The parameter is available only for compatibility.
                """
            ),
        ] = ...,
        *,
        default_factory: Annotated[
            Union[Callable[[], Any], None],
            Doc(
                """
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 23 18:30:18 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/common/help.jsp

    		":" and then the term you are looking for. If you want to find
    		documents which has "Fess" as the document title, you can enter:
    		<pre>title:Fess</pre>
    		The available fields are "url", "host", "site", "title", "content",
    		"content_length", "last_modified" and "mimetype", and they are
    		customizable.
    	</dd>
    	<dt>Sort</dt>
    	<dd>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

        public String name;
    
        public String urls;
    
        public String userAgent;
    
        public String numOfThread;
    
        public String intervalTime;
    
        public String boost;
    
        public String available;
    
        public String sortOrder;
    
        public String createdBy;
    
        public String createdTime;
    
        public String versionNo;
    
        public String description;
    
        public void clear() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. compat/maven-compat/src/test/java/org/apache/maven/repository/metadata/TestMetadataSource.java

        }
    
        public List<ArtifactVersion> retrieveAvailableVersionsFromDeploymentRepository(
                Artifact artifact, ArtifactRepository localRepository, ArtifactRepository remoteRepository)
                throws ArtifactMetadataRetrievalException {
            throw new UnsupportedOperationException("Cannot get available versions in this test case");
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top