Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 841 for Unavailable (0.35 sec)

  1. CHANGELOG/CHANGELOG-1.28.md

    ### Bug or Regression
    
    - Ensure daemonset controller to count old unhealthy pods towards max unavailable budget ([#127776](https://github.com/kubernetes/kubernetes/pull/127776), [@ncdc](https://github.com/ncdc)) [SIG Apps]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 456.9K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.24.md

        - [Signing Release Artifacts](#signing-release-artifacts)
        - [OpenAPI v3](#openapi-v3)
        - [Storage Capacity and Volume Expansion Are Generally Available](#storage-capacity-and-volume-expansion-are-generally-available)
        - [NonPreemptingPriority to Stable](#nonpreemptingpriority-to-stable)
        - [Storage Plugin Migration](#storage-plugin-migration)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java

         * @param componentName The name of the component that is not available.
         */
        public ContainerNotAvailableException(final String componentName) {
            super(componentName + " is not available.");
        }
    
        /**
         * Constructor with component name and cause.
         * @param componentName The name of the component that is not available.
         * @param cause The cause of the exception.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

            return crawlingConfigMap.get(sessionCountId);
        }
    
        /**
         * Retrieves all available web crawling configurations.
         * This is a convenience method that calls the overloaded version with default parameters
         * (withLabelType=true, withRoleType=true, available=true, idList=null).
         *
         * @return a list of all available WebConfig objects
         */
        public List<WebConfig> getAllWebConfigList() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"log_aggregator"}}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Nov 07 06:19:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/SmbPipeInputStreamTest.java

            int available = stream.available();
            assertEquals(0, available, "Disconnected/server-closed should yield 0 available");
    
            verify(fd, times(1)).markClosed();
            verify(tree, times(1)).close();
            verify(fd, times(1)).close();
        }
    
        @Test
        @DisplayName("available() on SMB1 returns reported available when connected")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbResourceException.java

         * @param available available resources
         * @param requested requested resources
         */
        public SmbResourceException(String message, int errorCode, ResourceType resourceType, long available, long requested) {
            super(message, errorCode, Severity.TRANSIENT, Category.RESOURCE);
            this.resourceType = resourceType;
            this.availableResources = available;
            this.requestedResources = requested;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsScheduledJobCQ.java

            TermQueryBuilder builder = regTermQ("available", available);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setAvailable_NotEqual(Boolean available) {
            setAvailable_NotTerm(available, null);
        }
    
        public void setAvailable_NotTerm(Boolean available) {
            setAvailable_NotTerm(available, null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 98.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponse.java

        private int available;
    
        /**
         * Constructs a TransPeekNamedPipeResponse with the specified configuration.
         *
         * @param config the SMB configuration
         */
        public TransPeekNamedPipeResponse(final Configuration config) {
            super(config);
        }
    
        /**
         * Gets the number of bytes available to read from the named pipe.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

                bufDataOffset = totalParameterCount; // data comes right after data
    
                int available = maxBufferSize - parameterOffset;
                parameterCount = Math.min(totalParameterCount, available);
                available -= parameterCount;
    
                dataOffset = parameterOffset + parameterCount;
                pad1 = dataOffset % PADDING_SIZE;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.4K bytes
    - Viewed (0)
Back to top