Search Options

Results per page
Sort
Preferred Languages
Advance

Results 671 - 680 of 2,557 for FALSE (0.22 sec)

  1. src/main/java/jcifs/util/PathValidator.java

                return false;
            }
    
            // Check for valid hostname or IP address
            // Simple validation - can be enhanced
            if (host.length() > 255) {
                return false;
            }
    
            // Check for invalid characters
            if (host.contains("..") || host.contains("//") || host.contains("\\\\")) {
                return false;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    	expected bool
    }{
    	{[]byte(""), "", false},
    	{[]byte(""), "a", false},
    	{[]byte(""), "abc", false},
    	{[]byte("a"), "", false},
    	{[]byte("a"), "a", true},
    	{[]byte("aaa"), "a", true},
    	{[]byte("abc"), "xyz", false},
    	{[]byte("abc"), "xcz", true},
    	{[]byte("a☺b☻c☹d"), "uvw☻xyz", true},
    	{[]byte("aRegExp*"), ".(|)*+?^$[]", true},
    	{[]byte(dots + dots + dots), " ", false},
    }
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jul 28 18:13:58 UTC 2025
    - 62.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java

                    return null;
                }
    
                @Override
                public boolean isOpen() {
                    return false;
                }
    
                @Override
                public boolean isStale() {
                    return false;
                }
    
                @Override
                public void close() throws CIFSException {
                }
    
                @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

                            .bucket(bucketName)
                            .prefix(path)
                            .recursive(false)
                            .includeUserMetadata(false)
                            .useApiVersion1(false)
                            .build();
                    for (final Result<Item> result : minioClient.listObjects(args)) {
                        final Item item = result.get();
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 17.9K bytes
    - Viewed (2)
  5. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <defaultValue>false</defaultValue>
            </field>
            <field>
              <name>directInvocationOnly</name>
              <version>2.0.0+</version>
              <type>boolean</type>
              <description>Flags this Mojo to be invoked directly only.</description>
              <defaultValue>false</defaultValue>
            </field>
            <field>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Feb 25 08:28:41 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  6. .github/workflows/contributors.yml

      workflow_dispatch:
        inputs:
          debug_enabled:
            description: "Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)"
            required: false
            default: "false"
    
    env:
      UV_SYSTEM_PYTHON: 1
    
    jobs:
      job:
        if: github.repository_owner == 'fastapi'
        runs-on: ubuntu-latest
        permissions:
          contents: write
        steps:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Aug 15 21:44:06 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  7. .github/workflows/sponsors.yml

      workflow_dispatch:
        inputs:
          debug_enabled:
            description: "Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)"
            required: false
            default: "false"
    
    env:
      UV_SYSTEM_PYTHON: 1
    
    jobs:
      job:
        if: github.repository_owner == 'fastapi'
        runs-on: ubuntu-latest
        permissions:
          contents: write
        steps:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Aug 15 21:44:06 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

       * BasicConstraints ::= SEQUENCE {
       *   cA                      BOOLEAN DEFAULT FALSE,
       *   pathLenConstraint       INTEGER (0..MAX) OPTIONAL
       * }
       * ```
       */
      private val basicConstraints: BasicDerAdapter<BasicConstraints> =
        Adapters.sequence(
          "BasicConstraints",
          Adapters.BOOLEAN.optional(defaultValue = false),
          Adapters.INTEGER_AS_LONG.optional(),
          decompose = {
            listOf(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

     */
    class TaskRunner(
      val backend: Backend,
      internal val logger: Logger = TaskRunner.logger,
    ) : Lockable {
      private var nextQueueName = 10000
      private var coordinatorWaiting = false
      private var coordinatorWakeUpAt = 0L
    
      /**
       * When we need a new thread to run tasks, we call [Backend.execute]. A few microseconds later we
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/LinearTransformation.java

        static final NaNLinearTransformation INSTANCE = new NaNLinearTransformation();
    
        @Override
        public boolean isVertical() {
          return false;
        }
    
        @Override
        public boolean isHorizontal() {
          return false;
        }
    
        @Override
        public double slope() {
          return NaN;
        }
    
        @Override
        public double transform(double x) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top