Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 111 for rc (0.53 sec)

  1. .teamcity/mvnw.cmd

    @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
    @REM     e.g. to debug Maven itself, use
    @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
    @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
    @REM ----------------------------------------------------------------------------
    
    @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
    @echo off
    Batch File
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.17.md

          - [Removed](#removed-13)
    - [v1.17.0-rc.2](#v1170-rc2)
      - [Downloads for v1.17.0-rc.2](#downloads-for-v1170-rc2)
        - [Client Binaries](#client-binaries-18)
        - [Server Binaries](#server-binaries-18)
        - [Node Binaries](#node-binaries-18)
      - [Changelog since v1.17.0-rc.1](#changelog-since-v1170-rc1)
        - [Other notable changes](#other-notable-changes-2)
    - [v1.17.0-rc.1](#v1170-rc1)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Jan 28 10:44:33 GMT 2021
    - 346.2K bytes
    - Viewed (1)
  3. bin/update_crds.sh

    if [ -n "${SHA}" ]; then
      REPO=$(grep "istio.io/api" go.mod | grep "^replace" | awk '{print $4}')
    else
      SHA=$(grep "istio.io/api" go.mod | head -n1 | awk '{ print $2 }')
      if [[ ${SHA} == *"-"* && ! ${SHA} =~ -rc.[0-9]$ && ! ${SHA} =~ -beta.[0-9]$ && ! ${SHA} =~ -alpha.[0-9]$ ]]; then
        # not an official release or release candidate, so get the commit sha
        SHA=$(echo "${SHA}" | awk -F '-' '{ print $NF }')
      fi
    fi
    
    Shell Script
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 22 14:28:27 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  4. internal/s3select/select.go

    	switch s3Select.Input.format {
    	case csvFormat:
    		_, err = rsc.Seek(offset, seekDirection)
    		if err != nil {
    			return err
    		}
    		var rc io.ReadCloser = rsc
    		if length != -1 {
    			rc = newLimitedReadCloser(rsc, length)
    		}
    
    		s3Select.progressReader, err = newProgressReader(rc, s3Select.Input.CompressionType)
    		if err != nil {
    			rsc.Close()
    			return err
    		}
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Nov 06 22:26:08 GMT 2023
    - 21K bytes
    - Viewed (0)
  5. src/packaging/common/scripts/postrm

        fi
    
        if command -v chkconfig >/dev/null; then
            chkconfig --del fess 2> /dev/null || true
        fi
    
        if command -v update-rc.d >/dev/null; then
            update-rc.d fess remove >/dev/null || true
        fi
    fi
    
    if [ "$REMOVE_DIRS" = "true" ]; then
        if [ -d "$PID_DIR" ]; then
            echo -n "Deleting PID directory..."
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 2.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

        - [Changed](#changed-4)
        - [Removed](#removed-4)
    - [v1.29.0-rc.2](#v1290-rc2)
      - [Downloads for v1.29.0-rc.2](#downloads-for-v1290-rc2)
        - [Source Code](#source-code-5)
        - [Client Binaries](#client-binaries-5)
        - [Server Binaries](#server-binaries-5)
        - [Node Binaries](#node-binaries-5)
        - [Container Images](#container-images-5)
      - [Changelog since v1.29.0-rc.1](#changelog-since-v1290-rc1)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 21:41:06 GMT 2024
    - 299.9K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.11.md

    
    - [v1.11.0-rc.3](#v1110-rc3)
    - [v1.11.0-rc.2](#v1110-rc2)
    - [v1.11.0-rc.1](#v1110-rc1)
    - [v1.11.0-beta.2](#v1110-beta2)
    - [v1.11.0-beta.1](#v1110-beta1)
    - [v1.11.0-alpha.2](#v1110-alpha2)
    - [v1.11.0-alpha.1](#v1110-alpha1)
    
    
    
    # v1.11.0-rc.3
    
    [Documentation](https://docs.k8s.io)
    
    ## Downloads for v1.11.0-rc.3
    
    
    filename | sha256 hash
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 328.4K bytes
    - Viewed (0)
  8. src/archive/zip/zip_test.go

    		t.Fatal("reader:", err)
    	}
    	f0 := r.File[0]
    	rc, err := f0.Open()
    	if err != nil {
    		t.Fatal("opening:", err)
    	}
    	rc.(*checksumReader).hash = fakeHash32{}
    	for i := 0; i < chunks; i++ {
    		_, err := io.ReadFull(rc, chunk)
    		if err != nil {
    			t.Fatal("read:", err)
    		}
    	}
    	if frag := int(size % chunkSize); frag > 0 {
    		_, err := io.ReadFull(rc, chunk[:frag])
    		if err != nil {
    			t.Fatal("read:", err)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  9. apache-maven/src/site/apt/index.apt.vm

     -----
     2021-07-11
     -----
    
    ${project.name}
    
     ${project.description}
    
    * References
    
     * <<<mvn>>> invocation can be customized through pre-invocation script calls, that can be disabled by setting <<<MAVEN_SKIP_RC>>> environment variable:
    
    *----------+--------------------------------------------+-----------------------+
    ||         || system level                              || user level 
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Aug 20 00:26:03 GMT 2021
    - 1.9K bytes
    - Viewed (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild.wrapper.gradle.kts

    import gradlebuild.basics.capitalize
    import com.google.gson.Gson
    import java.net.URL
    
    wrapperUpdateTask("nightly", "nightly")
    wrapperUpdateTask("rc", "release-candidate")
    wrapperUpdateTask("current", "current")
    
    tasks.withType<Wrapper>().configureEach {
        val jvmOpts = "-Dfile.encoding=UTF-8"
        inputs.property("jvmOpts", jvmOpts)
        doLast {
            val optsEnvVar = "DEFAULT_JVM_OPTS"
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.4K bytes
    - Viewed (0)
Back to top