Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,036 for Configurer (0.32 sec)

  1. configure

    set -e
    set -o pipefail
    
    if [ -z "$PYTHON_BIN_PATH" ]; then
      PYTHON_BIN_PATH=$(which python3 || which python || true)
    fi
    
    # Set all env variables
    CONFIGURE_DIR=$(dirname "$0")
    "$PYTHON_BIN_PATH" "${CONFIGURE_DIR}/configure.py" "$@"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 12 14:04:24 UTC 2020
    - 285 bytes
    - Viewed (0)
  2. cluster/gce/gci/configure.sh

      fi
      cp "${dst_dir}/kubernetes/gci-trusty/gci-configure-helper.sh" "${KUBE_BIN}/configure-helper.sh"
      cp "${dst_dir}/kubernetes/gci-trusty/configure-kubeapiserver.sh" "${KUBE_BIN}/configure-kubeapiserver.sh"
      if [[ -e "${dst_dir}/kubernetes/gci-trusty/gke-internal-configure-helper.sh" ]]; then
        cp "${dst_dir}/kubernetes/gci-trusty/gke-internal-configure-helper.sh" "${KUBE_BIN}/"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. cluster/gce/windows/configure.ps1

      Create-AuthProviderGcpConfig
      Set-PodCidr
      Configure-HostNetworkingService
      Prepare-CniNetworking
      Configure-HostDnsConf
      Configure-GcePdTools
      Configure-Kubelet
      Configure-NodeProblemDetector
    
      # Even if Logging agent is already installed, the function will still [re]start the service.
      if (IsLoggingEnabled $kube_env) {
        Install-LoggingAgent
        Configure-LoggingAgent
        Restart-LoggingAgent
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. configure.py

      # At most 1 GPU platform can be configured.
      gpu_platform_count = 0
      if environ_cp.get('TF_NEED_ROCM') == '1':
        gpu_platform_count += 1
      if environ_cp.get('TF_NEED_CUDA') == '1':
        gpu_platform_count += 1
      if gpu_platform_count >= 2:
        raise UserInputError('CUDA / ROCm are mututally exclusive. '
                             'At most 1 GPU platform can be configured.')
    
      set_cc_opt_flags(environ_cp)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  5. configure.cmd

    :: License for the specific language governing permissions and limitations under
    :: the License.
    
    @echo off
    
    set configure_dir=%~dp0
    set configure_dir=%configure_dir:~0,-1%
    python "%configure_dir%\configure.py" %* || ( exit /b )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 11 09:27:42 UTC 2020
    - 782 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildProgressCrossVersionSpec.groovy

            def configureA = events.operation("Configure project :a")
            configureA.parent == resolveCompile
            resolveCompile.children == [configureA]
    
            def resolveCompileA = events.operation("Resolve dependencies :a:compile", "Resolve dependencies of :a:compile")
            resolveCompileA.parent == configureA
            configureA.children == [resolveCompileA]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BasicProjectConfigurationProgressCrossVersionSpec.groovy

            def configureB = events.operation("Configure project :b")
            configureB.parent == configureBuild
            configureB.descriptor.name == 'Project :b' || configureB.descriptor.name == 'Configure project :b'
    
            configureBuild.children.containsAll(configureRoot, configureA, configureB)
        }
    
        def "generates project configuration events when configuration fails"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

    # Installs logrotate configuration files
    function setup-logrotate() {
      mkdir -p /etc/logrotate.d/
    
      if [[ "${ENABLE_LOGROTATE_FILES:-true}" = "true" ]]; then
        # Configure log rotation for all logs in /var/log, which is where k8s services
        # are configured to write their log files. Whenever logrotate is ran, this
        # config will:
        # * rotate the log file if its size is > 100Mb OR if one day has elapsed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-kubeapiserver.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    
    # Configures etcd related flags of kube-apiserver.
    function configure-etcd-params {
      local -n params_ref=$1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            configureA.children == [resolveCompileA, resolveArtifactBinA]
    
            def configureB = events.operation("Configure project :b")
            configureB.parent == resolveCompileA
            resolveCompileA.children == [configureB]
        }
    
        @TargetGradleVersion(">=3.5 <4.0")
        def "generates events for downloading artifacts"() {
            given:
            def modules = setupBuildWithArtifactDownloadDuringConfiguration()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top