Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2171 - 2180 of 4,618 for alse (0.03 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java

                        }
                        extractor = crawlerContainer.getComponent(extractorName);
                    } else if (logger.isDebugEnabled()) {
                        logger.debug("use {} from {}, not {}", extractor.getClass().getName(), detectedMimeType, mimeType);
                    }
                } else if (logger.isDebugEnabled()) {
                    logger.debug("use {} from {}", extractor.getClass().getName(), mimeType);
                }
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:40:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. internal/config/identity/ldap/config.go

    	if !isEnableFlagExplicitlySet && !l.LDAP.Enabled {
    		l.LDAP.Enabled = true
    	}
    	// Validate and test configuration.
    	valResult := l.LDAP.Validate()
    	if !valResult.IsOk() {
    		// Set to false if configuration fails to validate.
    		l.LDAP.Enabled = false
    		return l, valResult
    	}
    
    	return l, nil
    }
    
    // GetConfigList - returns a list of LDAP configurations.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 07 12:59:47 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CartesianList.java

      public boolean contains(@CheckForNull Object object) {
        if (!(object instanceof List)) {
          return false;
        }
        List<?> list = (List<?>) object;
        if (list.size() != axes.size()) {
          return false;
        }
        int i = 0;
        for (Object o : list) {
          if (!axes.get(i).contains(o)) {
            return false;
          }
          i++;
        }
        return true;
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

    message FlowSchemaCondition {
      // `type` is the type of the condition.
      // Required.
      optional string type = 1;
    
      // `status` is the status of the condition.
      // Can be True, False, Unknown.
      // Required.
      optional string status = 2;
    
      // `lastTransitionTime` is the last time the condition transitioned from one status to another.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

    message FlowSchemaCondition {
      // `type` is the type of the condition.
      // Required.
      optional string type = 1;
    
      // `status` is the status of the condition.
      // Can be True, False, Unknown.
      // Required.
      optional string status = 2;
    
      // `lastTransitionTime` is the last time the condition transitioned from one status to another.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbResource.java

    import java.io.InputStream;
    import java.io.OutputStream;
    
    
    /**
     * This class represents a resource on an SMB network. Mainly these
     * resources are files and directories however an <code>SmbFile</code>
     * may also refer to servers and workgroups.
     * 
     * @see jcifs.smb.SmbFile for the main implementation of this interface
     * @author mbechler
     */
    public interface SmbResource extends AutoCloseable {
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Handshake.kt

          "localCertificates=${localCertificates.map { it.name }}}"
      }
    
      private val Certificate.name: String
        get() =
          when (this) {
            is X509Certificate -> subjectDN.toString()
            else -> type
          }
    
      companion object {
        @Throws(IOException::class)
        @JvmStatic
        @JvmName("get")
        fun SSLSession.handshake(): Handshake {
          val cipherSuite =
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/custom-request-and-route.md

    /// note | "Technical Details"
    
    A `Request` has a `request.scope` attribute, that's just a Python `dict` containing the metadata related to the request.
    
    A `Request` also has a `request.receive`, that's a function to "receive" the body of the request.
    
    The `scope` `dict` and `receive` function are both part of the ASGI specification.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 22:39:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. schema/naming.go

    		if curCase {
    			if lastCase && (nextCase || nextNumber) {
    				buf.WriteRune(v + 32)
    			} else {
    				if i > 0 && value[i-1] != '_' && value[i+1] != '_' {
    					buf.WriteByte('_')
    				}
    				buf.WriteRune(v + 32)
    			}
    		} else {
    			buf.WriteRune(v)
    		}
    
    		lastCase = curCase
    		curCase = nextCase
    	}
    
    	if curCase {
    		if !lastCase && len(value) > 1 {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/math/MathPreconditionsTest.java

        MathPreconditions.checkRoundingUnnecessary(true);
      }
    
      public void testCheckRoundingUnnecessary_failure() {
        assertThrows(
            ArithmeticException.class, () -> MathPreconditions.checkRoundingUnnecessary(false));
      }
    
      public void testCheckInRange_success() {
        MathPreconditions.checkInRangeForRoundingInputs(true, 1.0, RoundingMode.UP);
      }
    
      public void testCheckInRange_failure() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 15:00:32 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top