Search Options

Results per page
Sort
Preferred Languages
Advance

Results 511 - 520 of 872 for ignoreMe (0.06 sec)

  1. helm-releases/minio-3.1.3.tgz

    ## rootUser: "" rootPassword: "" ## Use existing Secret that store following variables: ## ## | Chart var | .data.<key> in Secret | ## |:-------- ## | rootUser | rootUser | ## | rootPassword | rootPassword | ## ## All mentioned variables will be ignored in values file. ## .data.rootUser and .data.rootPassword are mandatory, ## others depend on enabled status of corresponding sections. existingSecret: "" ## Directory on the MinIO pof certsPath: "/etc/minio/certs/" configPathmc: "/etc/minio/mc/" ##...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Sep 18 18:09:59 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  2. ci/devinfra/docker/windows/Dockerfile

    	C:\python312\python.exe -m pip --version; \
    	\
    	Write-Host 'Removing ...'; \
    	Remove-Item C:\tmp\pyinstall.exe -Force; \
    	\
    	Write-Host 'Complete.';
    
    # Install pip packages.
    RUN python -m pip install --ignore-installed --force-reinstall --upgrade \
        setuptools packaging
    
    # Install JDK 21.
    RUN \
      Add-Type -AssemblyName \"System.IO.Compression.FileSystem\"; \
      $zulu_pkg = \"zulu21.34.19-ca-jdk21.0.3-win_x64.zip\"; \
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Aug 20 13:57:04 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

        userResponse: Response,
        defaultDelay: Int,
      ): Int {
        val header = userResponse.header("Retry-After") ?: return defaultDelay
    
        // https://tools.ietf.org/html/rfc7231#section-7.1.3
        // currently ignores a HTTP-date, and assumes any non int 0 is a delay
        if (header.matches("\\d+".toRegex())) {
          return Integer.valueOf(header)
        }
        return Integer.MAX_VALUE
      }
    
      companion object {
        /**
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/TestThread.java

              continue;
            }
            responseQueue.put(new Response(request.methodName, result, null));
          }
        } catch (ThreadDeath death) {
          return;
        } catch (InterruptedException ignored) {
          // SynchronousQueue sometimes throws InterruptedException while the threads are stopping.
        } catch (Throwable uncaught) {
          this.uncaughtThrowable = uncaught;
        }
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. callbacks/preload.go

    	}
    	return names
    }
    
    // preloadEntryPoint enters layer by layer. It will call real preload if it finds the right entry point.
    // If the current relationship is embedded or joined, current query will be ignored.
    //
    //nolint:cyclop
    func preloadEntryPoint(db *gorm.DB, joins []string, relationships *schema.Relationships, preloads map[string][]interface{}, associationsConds []interface{}) error {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/LittleEndianDataOutputStream.java

      public void writeUTF(String str) throws IOException {
        ((DataOutputStream) out).writeUTF(str);
      }
    
      // Overriding close() because FilterOutputStream's close() method pre-JDK8 has bad behavior:
      // it silently ignores any exception thrown by flush(). Instead, just close the delegate stream.
      // It should flush itself if necessary.
      @Override
      public void close() throws IOException {
        out.close();
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 26 12:34:49 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. ci/official/utilities/code_check_full.bats

    # https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/pip_package/pip_smoke_test.py
    @test "Pip package includes all required //tensorflow dependencies" {
      # grep patterns for packages whose dependencies can be ignored
      cat > $BATS_TEST_TMPDIR/ignore_deps_for_these_packages <<EOF
    //tensorflow/lite
    //tensorflow/compiler/mlir/lite
    //tensorflow/compiler/mlir/tfrt
    //tensorflow/core/runtime_fallback
    //tensorflow/core/tfrt
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Oct 23 18:48:35 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. docs/fr/docs/tutorial/path-params-numeric-validations.md

    De cette façon, vous pouvez utiliser votre éditeur et vos outils de codage habituels sans avoir à ajouter des configurations personnalisées pour ignorer ces erreurs.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 28 10:32:37 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/idn/IdnaMappingTableTest.kt

        assertThat("ß".map()).isEqualTo("ß")
        assertThat("ς".map()).isEqualTo("ς")
        assertThat("\u200c".map()).isEqualTo("\u200c")
        assertThat("\u200d".map()).isEqualTo("\u200d")
      }
    
      @Test fun ignored() {
        assertThat("\u200b".map()).isEqualTo("")
        assertThat("\ufeff".map()).isEqualTo("")
      }
    
      @Test fun disallowed() {
        assertThat("\u0080".mapExpectingErrors()).isEqualTo("\u0080")
      }
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. internal/s3select/unused-errors.go

    //go:build ignore
    // +build ignore
    
    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top