Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for ssdopts (0.23 sec)

  1. pilot/cmd/pilot-agent/app/cmd.go

    			}
    			if out, err := protomarshal.ToYAML(proxyConfig); err != nil {
    				log.Infof("Failed to serialize to YAML: %v", err)
    			} else {
    				log.Infof("Effective config: %s", out)
    			}
    
    			secOpts, err := options.NewSecurityOptions(proxyConfig, proxyArgs.StsPort, proxyArgs.TokenManagerPlugin)
    			if err != nil {
    				return err
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent_test.go

    		dir := mktemp()
    		copyCerts(t, dir)
    
    		secOpts := &security.Options{}
    		secOpts.RootCertFilePath = filepath.Join(dir, "/root-cert.pem")
    		secOpts.CertChainFilePath = filepath.Join(dir, "/cert-chain.pem")
    		secOpts.KeyFilePath = filepath.Join(dir, "/key.pem")
    
    		secretCache, err := cache.NewSecretManagerClient(nil, secOpts)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer secretCache.Close()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    				return true, nil
    			}
    
    			rsOpts.NewSize = pvSpecCap
    			rsOpts.OldSize = pvcStatusCap
    			resizeOp := nodeResizeOperationOpts{
    				vmt:                volumeToMount,
    				pvc:                pvc,
    				pv:                 pv,
    				pluginResizeOpts:   rsOpts,
    				volumePlugin:       expandablePlugin,
    				actualStateOfWorld: actualStateOfWorld,
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. cmd/speedtest.go

    			case <-ctx.Done():
    				return
    			}
    		}
    
    		for {
    			select {
    			case <-ctx.Done():
    				// If the client got disconnected stop the speedtest.
    				return
    			default:
    			}
    
    			sopts := speedTestOpts{
    				objectSize:      opts.objectSize,
    				concurrency:     concurrency,
    				duration:        opts.duration,
    				storageClass:    opts.storageClass,
    				bucketName:      opts.bucketName,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top