Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for ssdopts (0.22 sec)

  1. docs/debugging/s3-verify/main.go

    	if debug {
    		sclnt.TraceOn(os.Stderr)
    		tclnt.TraceOn(os.Stderr)
    	}
    
    	sopts := minio.ListObjectsOptions{
    		Recursive: true,
    		Prefix:    sourcePrefix,
    	}
    
    	topts := minio.ListObjectsOptions{
    		Recursive: true,
    		Prefix:    targetPrefix,
    	}
    
    	srcCh := sclnt.ListObjects(context.Background(), sourceBucket, sopts)
    	tgtCh := tclnt.ListObjects(context.Background(), targetBucket, topts)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 22 15:12:47 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    			ondiskTimestamp, err := time.Parse(time.RFC3339, lholdTmStr)
    			if err == nil {
    				dstOpts.Internal.LegalholdTimestamp = ondiskTimestamp
    			}
    		}
    		if _, rinfo.Err = c.CopyObject(ctx, tgt.Bucket, object, tgt.Bucket, object, getCopyObjMetadata(objInfo, tgt.StorageClass), srcOpts, dstOpts); rinfo.Err != nil {
    			rinfo.ReplicationStatus = replication.Failed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator_test.go

    			pv := test.pv
    			og := getTestOperationGenerator(volumePluginMgr, pvc, pv)
    			rsOpts := inTreeResizeOpts{
    				pvc:          pvc,
    				pv:           pv,
    				resizerName:  fakePlugin.GetPluginName(),
    				volumePlugin: fakePlugin,
    			}
    			ogInstance, _ := og.(*operationGenerator)
    
    			expansionResponse := ogInstance.expandAndRecoverFunction(rsOpts)
    			if expansionResponse.err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy_test.go

    }
    
    func setupXdsProxy(t *testing.T) *XdsProxy {
    	return setupXdsProxyWithDownstreamOptions(t, nil)
    }
    
    func setupXdsProxyWithDownstreamOptions(t *testing.T, opts []grpc.ServerOption) *XdsProxy {
    	secOpts := &security.Options{
    		FileMountedCerts: true,
    	}
    	proxyConfig := mesh.DefaultProxyConfig()
    	proxyConfig.DiscoveryAddress = "buffcon"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/crypto/rsa/rsa.go

    // uses should use the Sign* functions in this package directly.
    func (priv *PrivateKey) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) ([]byte, error) {
    	if pssOpts, ok := opts.(*PSSOptions); ok {
    		return SignPSS(rand, priv, pssOpts.Hash, digest, pssOpts)
    	}
    
    	return SignPKCS1v15(rand, priv, opts.HashFunc(), digest)
    }
    
    // Decrypt decrypts ciphertext with priv. If opts is nil or of type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/cmds.go

    				s.Logf("[background] %s%s%s\n", bg.name, beforeArgs, quoteArgs(bg.args))
    
    				if stdout != "" {
    					s.Logf("[stdout]\n%s", stdout)
    					stdouts = append(stdouts, stdout)
    				}
    				if stderr != "" {
    					s.Logf("[stderr]\n%s", stderr)
    					stderrs = append(stderrs, stderr)
    				}
    				if err != nil {
    					s.Logf("[%v]\n", err)
    				}
    				if cmdErr := checkStatus(bg.command, err); cmdErr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy.go

    	}
    	options, err := istiogrpc.ClientOptions(nil, tlsOpts)
    	if err != nil {
    		return nil, err
    	}
    	if sa.secOpts.CredFetcher != nil {
    		options = append(options, grpc.WithPerRPCCredentials(caclient.NewDefaultTokenProvider(sa.secOpts)))
    	}
    	return options, nil
    }
    
    // Returns the TLS option to use when talking to Istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. pyproject.toml

    check_untyped_defs = true
    
    [[tool.mypy.overrides]]
    module = "docs_src.*"
    disallow_incomplete_defs = false
    disallow_untyped_defs = false
    disallow_untyped_calls = false
    
    [tool.pytest.ini_options]
    addopts = [
      "--strict-config",
      "--strict-markers",
      "--ignore=docs_src",
    ]
    xfail_strict = true
    junit_family = "xunit2"
    filterwarnings = [
        "error",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. cmd/object-api-utils.go

    				}
    				oi.Size = decLength
    			}
    			// Decompression reader.
    			var dopts []s2.ReaderOption
    			if off > 0 || decOff > 0 {
    				// We are not starting at the beginning, so ignore stream identifiers.
    				dopts = append(dopts, s2.ReaderIgnoreStreamIdentifier())
    			}
    			s2Reader := s2.NewReader(inputReader, dopts...)
    			// Apply the skipLen and limit on the decompressed stream.
    			if decOff > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/syscall/mkerrors.sh

    fi
    
    uname=$(uname)
    
    includes_AIX='
    #include <net/if.h>
    #include <net/netopt.h>
    #include <netinet/ip_mroute.h>
    #include <sys/mman.h>
    #include <sys/protosw.h>
    #include <sys/ptrace.h>
    #include <sys/stropts.h>
    #include <termios.h>
    '
    
    includes_Darwin='
    #define _DARWIN_C_SOURCE
    #define KERNEL
    #define _DARWIN_USE_64_BIT_INODE
    #include <sys/types.h>
    #include <sys/event.h>
    #include <sys/ptrace.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
Back to top