Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 111 for rc (0.15 sec)

  1. istioctl/pkg/cli/context.go

    type instance struct {
    	// clients are cached clients for each revision
    	clients map[string]kube.CLIClient
    	RootFlags
    }
    
    func newKubeClientWithRevision(kubeconfig, configContext, revision string) (kube.CLIClient, error) {
    	rc, err := kube.DefaultRestConfig(kubeconfig, configContext, func(config *rest.Config) {
    		// We are running a one-off command locally, so we don't need to worry too much about rate limiting
    		// Bumping this up greatly decreases install time
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.16.md

            - [Removed](#removed-8)
    - [v1.16.0-rc.2](#v1160-rc2)
      - [Downloads for v1.16.0-rc.2](#downloads-for-v1160-rc2)
        - [Client Binaries](#client-binaries-17)
        - [Server Binaries](#server-binaries-17)
        - [Node Binaries](#node-binaries-17)
      - [Changelog since v1.16.0-rc.1](#changelog-since-v1160-rc1)
        - [Other notable changes](#other-notable-changes-6)
    - [v1.16.0-rc.1](#v1160-rc1)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Feb 11 10:00:57 GMT 2021
    - 345.2K bytes
    - Viewed (0)
  3. cmd/bucket-versioning-handler.go

    			Description:    "An Object Lock configuration is present on this bucket, versioning cannot be suspended.",
    			HTTPStatusCode: http.StatusBadRequest,
    		}, r.URL)
    		return
    	}
    	if rc, _ := getReplicationConfig(ctx, bucket); rc != nil && v.Suspended() {
    		writeErrorResponse(ctx, w, APIError{
    			Code:           "InvalidBucketState",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 5K bytes
    - Viewed (0)
  4. cmd/storage-rest-server.go

    		s.writeErrorResponse(w, err)
    		return
    	}
    
    	w.Header().Set(xhttp.ContentLength, strconv.Itoa(length))
    
    	rc, err := s.getStorage().ReadFileStream(r.Context(), volume, filePath, int64(offset), int64(length))
    	if err != nil {
    		s.writeErrorResponse(w, err)
    		return
    	}
    	defer rc.Close()
    
    	rf, ok := w.(io.ReaderFrom)
    	if ok && runtime.GOOS != "windows" {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 44.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.19.md

        - [Changed](#changed-17)
        - [Removed](#removed-17)
    - [v1.19.0-rc.4](#v1190-rc4)
      - [Downloads for v1.19.0-rc.4](#downloads-for-v1190-rc4)
        - [Source Code](#source-code-17)
        - [Client binaries](#client-binaries-17)
        - [Server binaries](#server-binaries-17)
        - [Node binaries](#node-binaries-17)
      - [Changelog since v1.19.0-rc.3](#changelog-since-v1190-rc3)
      - [Changes by Kind](#changes-by-kind-17)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Jan 05 05:42:32 GMT 2022
    - 489.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.12.md

    - [v1.12.0-rc.2](#v1120-rc2)
      - [Downloads for v1.12.0-rc.2](#downloads-for-v1120-rc2)
        - [Client Binaries](#client-binaries-11)
        - [Server Binaries](#server-binaries-11)
        - [Node Binaries](#node-binaries-11)
      - [Changelog since v1.12.0-rc.1](#changelog-since-v1120-rc1)
        - [Other notable changes](#other-notable-changes-12)
    - [v1.12.0-rc.1](#v1120-rc1)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 293.8K bytes
    - Viewed (1)
  7. apache-maven/src/assembly/maven/bin/mvnyjp

    #
    # Environment Variable Prerequisites
    #
    #   JAVA_HOME       Must point at your Java Development Kit installation.
    #   MAVEN_OPTS      (Optional) Java runtime options used when Maven is executed.
    #   MAVEN_SKIP_RC   (Optional) Flag to disable loading of mavenrc files.
    # -----------------------------------------------------------------------------
    
    if [ ! -f "$YJPLIB" ]; then
    Shell Script
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat May 23 09:02:45 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/bin/mvnDebug

    #
    # Environment Variable Prerequisites
    #
    #   JAVA_HOME           (Optional) Points to a Java installation.
    #   MAVEN_OPTS          (Optional) Java runtime options used when Maven is executed.
    #   MAVEN_SKIP_RC       (Optional) Flag to disable loading of mavenrc files.
    #   MAVEN_DEBUG_ADDRESS (Optional) Set the debug address. Default value is localhost:8000
    # -----------------------------------------------------------------------------
    
    Shell Script
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Jul 25 20:33:33 GMT 2021
    - 1.6K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please use our bug report template to report problems with something that has never worked.
            Regressions reports are greatly appreciated during our RC phase and before a final release.
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  10. internal/rest/client.go

    	rc, ok := body.(io.ReadCloser)
    	if !ok && body != nil {
    		rc = io.NopCloser(body)
    	}
    	req := &http.Request{
    		Method:     http.MethodPost,
    		URL:        &u,
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    		Header:     make(http.Header),
    		Body:       rc,
    		Host:       u.Host,
    	}
    	req = req.WithContext(ctx)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 14K bytes
    - Viewed (0)
Back to top