Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 130 for deploying (0.16 sec)

  1. CHANGELOG/CHANGELOG-1.19.md

    ### Documentation
    
    - Updated the instructions for deploying the sample app. ([#82785](https://github.com/kubernetes/kubernetes/pull/82785), [@ashish-billore](https://github.com/ashish-billore)) [SIG API Machinery]
    
    ### Failing Test
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

      - name: "PodMissingProxy"
        code: IST0103
        level: Warning
        description: "A pod is missing the Istio proxy."
        template: "The pod %s is missing the Istio proxy. This can often be resolved by restarting or redeploying the workload."
        args:
          - name: podName
            type: string
    
      # IST0104 RETIRED
      # IST0105 RETIRED
    
      - name: "SchemaValidationError"
        code: IST0106
        level: Error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

            // Minimise test flakiness due to possible race conditions with connections closing.
            // Some number of tests will report here, but not fail due to this delay.
            println("Delaying to avoid flakes")
            Thread.sleep(500L)
            println("After delay: " + connectionPool.connectionCount())
          }
    
          connectionPool.evictAll()
          assertEquals(0, connectionPool.connectionCount()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (1)
  4. src/cmd/go/internal/vcweb/script.go

    	"strconv"
    	"strings"
    	"time"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/zip"
    )
    
    // newScriptEngine returns a script engine augmented with commands for
    // reproducing version-control repositories by replaying commits.
    func newScriptEngine() *script.Engine {
    	conds := script.DefaultConds()
    
    	interrupt := func(cmd *exec.Cmd) error { return cmd.Process.Signal(os.Interrupt) }
    	gracePeriod := 30 * time.Second // arbitrary
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  5. cni/pkg/install/install.go

    		if err != nil {
    			installLog.Error("error watching node CNI config")
    			return err
    		}
    		installLog.Info("Detected changes to the node-level CNI setup, checking to see if configs or binaries need redeploying")
    		// We don't support (or want) to silently (re)deploy any binaries that were not in the initial "snapshot"
    		// so we intentionally discard/do not update the list of installedBins on redeploys.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/net/http/httputil/dump.go

    	// We need this channel to ensure that the reader
    	// goroutine exits if t.RoundTrip returns an error.
    	// See golang.org/issue/32571.
    	quitReadCh := make(chan struct{})
    	// Wait for the request before replying with a dummy response:
    	go func() {
    		req, err := http.ReadRequest(bufio.NewReader(pr))
    		if err == nil {
    			// Ensure all the body is read; otherwise
    			// we'll get a partial dump.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.12.md

        * Default value for expendable pod priority cutoff in GCP deployment of Cluster Autoscaler changed from 0 to -10.
        * action required: users deploying workloads with priority lower than 0 may want to use priority lower than -10 to avoid triggering scale-up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.6.md

    * kubeadm: Remove hard-coded default version when fetching stable version from the web fails. Fixes [kubeadm 1.6.1 deploying 1.6.0 control plane](https://github.com/kubernetes/kubeadm/issues/224). ([#43999](https://github.com/kubernetes/kubernetes/pull/43999), [@mikedanese](https://github.com/mikedanese))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  9. src/cmd/internal/archive/archive.go

    	}
    	return b
    }
    
    // readFull reads exactly len(b) bytes from the input file.
    // If an error occurs, read returns the error but also
    // records it, so it is safe for callers to ignore the result
    // as long as delaying the report is not a problem.
    func (r *objReader) readFull(b []byte) error {
    	if r.err != nil {
    		return r.err
    	}
    	if r.offset+int64(len(b)) > r.limit {
    		return r.error(io.ErrUnexpectedEOF)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    1. *DEFAULT:* Cleanup is performed periodically in the background (currently once every 24 hours).
    2. *DISABLED:* Never cleanup Gradle User Home.
    +
    This is useful in cases where Gradle User Home is ephemeral or delaying cleanup is desirable until an explicit point.
    3. *ALWAYS:* Cleanup is performed at the end of each build session.
    +
    This is useful in cases where it's desirable to ensure that cleanup has occurred before proceeding.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top