Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 705 for Remotes (0.11 sec)

  1. cmd/tier.go

    var (
    	errTierMissingCredentials = AdminError{
    		Code:       "XMinioAdminTierMissingCredentials",
    		Message:    "Specified remote credentials are empty",
    		StatusCode: http.StatusForbidden,
    	}
    
    	errTierBackendInUse = AdminError{
    		Code:       "XMinioAdminTierBackendInUse",
    		Message:    "Specified remote tier is already in use",
    		StatusCode: http.StatusConflict,
    	}
    
    	errTierTypeUnsupported = AdminError{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. cmd/bucket-targets.go

    	return &t, nil
    }
    
    // TargetClient is the struct for remote target client.
    type TargetClient struct {
    	*minio.Client
    	healthCheckDuration time.Duration
    	Bucket              string // remote bucket target
    	replicateSync       bool
    	StorageClass        string // storage class on remote
    	disableProxy        bool
    	ARN                 string // ARN to uniquely identify remote target
    	ResetID             string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    Usually, [packages] is a list of import paths.
    
    An import path that is a rooted path or that begins with
    a . or .. element is interpreted as a file system path and
    denotes the package in that directory.
    
    Otherwise, the import path P denotes the package found in
    the directory DIR/src/P for some DIR listed in the GOPATH
    environment variable (For more details see: 'go help gopath').
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            jar(file)
            def remote = new URL("https://somewhere")
            def cachedFile = testDir.file("cached/o_e161f24809571a55f09d3f820c8e5942/thing.jar")
    
            when:
            def cachedClasspath = transformer.transform([file.toURI().toURL(), remote], None)
    
            then:
            cachedClasspath == [cachedFile.toURI().toURL(), remote]
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    			requestHeaders: http.Header{
    				"X-Remote-User":  {"Bob"},
    				"X-Remote-Group": {"Users"},
    			},
    		},
    
    		"extra prefix matches case-insensitive": {
    			nameHeaders:        []string{"X-Remote-User"},
    			groupHeaders:       []string{"X-Remote-Group-1", "X-Remote-Group-2"},
    			extraPrefixHeaders: []string{"X-Remote-Extra-1-", "X-Remote-Extra-2-"},
    			requestHeaders: http.Header{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. pkg/wasm/convert_test.go

    			},
    			wantOutput: []*core.TypedExtensionConfig{
    				extensionConfigMap["remote-load-success-local-file"],
    			},
    			wantErr: false,
    		},
    		{
    			name: "remote load fail",
    			input: []*core.TypedExtensionConfig{
    				extensionConfigMap["remote-load-fail"],
    			},
    			wantOutput: []*core.TypedExtensionConfig{
    				extensionConfigMap["remote-load-fail"],
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/vcs.go

    		return nil, fmt.Errorf("unknown vcs: %s %s", vcs, remote)
    	}
    	if !strings.Contains(remote, "://") {
    		return nil, fmt.Errorf("invalid vcs remote: %s %s", vcs, remote)
    	}
    
    	r := &vcsRepo{remote: remote, cmd: cmd}
    	var err error
    	r.dir, r.mu.Path, err = WorkDir(ctx, vcsWorkDirType+vcs, r.remote)
    	if err != nil {
    		return nil, err
    	}
    
    	if cmd.init == nil {
    		return r, nil
    	}
    
    	unlock, err := r.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. pkg/kube/util.go

    		return nil, errors.NewRequestEntityTooLargeError(fmt.Sprintf("limit is %d", MaxRequestBodyBytes))
    	}
    	return data, nil
    }
    
    // StripUnusedFields is the transform function for shared informers,
    // it removes unused fields from objects before they are stored in the cache to save memory.
    func StripUnusedFields(obj any) (any, error) {
    	t, ok := obj.(metav1.ObjectMetaAccessor)
    	if !ok {
    		// shouldn't happen
    		return obj, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--proxy-client-key-file=" + filepath.FromSlash("/var/lib/certs/front-proxy-client.key"),
    				"--requestheader-username-headers=X-Remote-User",
    				"--requestheader-group-headers=X-Remote-Group",
    				"--requestheader-extra-headers-prefix=X-Remote-Extra-",
    				"--requestheader-client-ca-file=" + filepath.Join(testCertsDir, "front-proxy-ca.crt"),
    				"--requestheader-allowed-names=front-proxy-client",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy_delta.go

    			proxyLog.WithLabels(
    				"id", con.conID,
    				"type", model.GetShortType(resp.TypeUrl),
    				"nonce", resp.Nonce,
    				"resources", len(resp.Resources),
    				"removes", len(resp.RemovedResources),
    			).Debugf("upstream response")
    			metrics.XdsProxyResponses.Increment()
    			if h, f := p.handlers[resp.TypeUrl]; f {
    				if len(resp.Resources) == 0 {
    					// Empty response, nothing to do
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top