Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for ssdopts (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/erasure-server-pool-rebalance.go

    	rebalStarted
    	rebalCompleted
    	rebalStopped
    	rebalFailed
    )
    
    type rebalanceInfo struct {
    	StartTime time.Time   `msg:"startTs"` // Time at which rebalance-start was issued
    	EndTime   time.Time   `msg:"stopTs"`  // Time at which rebalance operation completed or rebalance-stop was called
    	Status    rebalStatus `msg:"status"`  // Current state of rebalance operation. One of Started|Stopped|Completed|Failed.
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set.go

    			return nil, fmt.Errorf("original StatefulSet %v/%v is gone: got uid %v, wanted %v", set.Namespace, set.Name, fresh.UID, set.UID)
    		}
    		return fresh, nil
    	})
    }
    
    // adoptOrphanRevisions adopts any orphaned ControllerRevisions matched by set's Selector.
    func (ssc *StatefulSetController) adoptOrphanRevisions(ctx context.Context, set *apps.StatefulSet) error {
    	revisions, err := ssc.control.ListRevisions(set)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    	export PATH=/usr/gnu/bin:$PATH
    fi
    
    uname=$(uname)
    
    includes_AIX='
    #include <net/if.h>
    #include <net/netopt.h>
    #include <netinet/ip_mroute.h>
    #include <sys/protosw.h>
    #include <sys/stropts.h>
    #include <sys/mman.h>
    #include <sys/poll.h>
    #include <sys/select.h>
    #include <sys/termio.h>
    #include <termios.h>
    #include <fcntl.h>
    
    #define AF_LOCAL AF_UNIX
    '
    
    includes_Darwin='
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top