Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for tstones (0.24 sec)

  1. pkg/ledger/smt.go

    			return newVal, nil
    		}
    		return val, nil
    	}
    	return nil, fmt.Errorf("the trie node %x is unavailable in the disk db, db may be corrupted", root)
    }
    
    // interiorHash hashes 2 children to get the parent hash and stores it in the updatedNodes and maybe in liveCache.
    // the key is the hash and the value is the appended child nodes or the appended key/value in case of a shortcut.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca.go

    	istioCASecretType = "istio.io/ca-root"
    
    	// CACertFile is the CA certificate chain file.
    	CACertFile = "ca-cert.pem"
    	// CAPrivateKeyFile is the private key file of CA.
    	CAPrivateKeyFile = "ca-key.pem"
    	// CASecret stores the key/cert of self-signed CA for persistency purpose.
    	CASecret = "istio-ca-secret"
    	// CertChainFile is the ID/name for the certificate chain file.
    	CertChainFile = "cert-chain.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry.go

    }
    
    // telemetryKey defines a key into the computedMetricsFilters cache.
    type telemetryKey struct {
    	// Root stores the Telemetry in the root namespace, if any
    	Root types.NamespacedName
    	// Namespace stores the Telemetry in the root namespace, if any
    	Namespace types.NamespacedName
    	// Workload stores the Telemetry in the root namespace, if any
    	Workload types.NamespacedName
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. pkg/wasm/convert.go

    		TypedConfig: allowNetworkTypedConfig,
    	}
    	return anypb.New(ec)
    }
    
    // MaybeConvertWasmExtensionConfig converts any presence of module remote download to local file.
    // It downloads the Wasm module and stores the module locally in the file system.
    func MaybeConvertWasmExtensionConfig(resources []*anypb.Any, cache Cache) error {
    	var wg sync.WaitGroup
    
    	numResources := len(resources)
    	convertErrs := make([]error, numResources)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // If all drivers in the list are uninstalled, this can become empty.
      // +patchMergeKey=name
      // +patchStrategy=merge
      repeated CSINodeDriver drivers = 1;
    }
    
    // CSIStorageCapacity stores the result of one CSI GetCapacity call.
    // For a given StorageClass, this describes the available capacity in a
    // particular topology segment.  This can be used when considering where to
    // instantiate new PersistentVolumes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy.go

    	proxyAddresses       []string
    	ia                   *Agent
    
    	httpTapServer      *http.Server
    	tapMutex           sync.RWMutex
    	tapResponseChannel chan *discovery.DiscoveryResponse
    
    	// connected stores the active gRPC stream. The proxy will only have 1 connection at a time
    	connected                 *ProxyConnection
    	initialHealthRequest      *discovery.DiscoveryRequest
    	initialDeltaHealthRequest *discovery.DeltaDiscoveryRequest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/cache/secretcache.go

    }
    
    func (s *secretCache) SetWorkload(value *security.SecretItem) {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	s.workload = value
    }
    
    var _ security.SecretManager = &SecretManagerClient{}
    
    // FileCert stores a reference to a certificate on disk
    type FileCert struct {
    	ResourceName string
    	Filename     string
    }
    
    // NewSecretManagerClient creates a new SecretManagerClient.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is the list of Deployments.
      repeated Deployment items = 2;
    }
    
    // DEPRECATED.
    // DeploymentRollback stores the information required to rollback a deployment.
    message DeploymentRollback {
      // Required: This must match the Name of a deployment.
      optional string name = 1;
    
      // The annotations to be updated to a deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  9. security/pkg/pki/util/keycertbundle.go

    package util
    
    import (
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/rsa"
    	"crypto/tls"
    	"crypto/x509"
    	"errors"
    	"fmt"
    	"os"
    	"sync"
    	"time"
    )
    
    // KeyCertBundle stores the cert, private key, cert chain and root cert for an entity. It is thread safe.
    // The cert and privKey should be a public/private key pair.
    // The cert should be verifiable from the rootCert through the certChain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. pkg/kube/kclient/client.go

    )
    
    type fullClient[T controllers.Object] struct {
    	writeClient[T]
    	Informer[T]
    }
    
    type writeClient[T controllers.Object] struct {
    	client kube.Client
    }
    
    // handlerRegistration stores a handler, with the registration so it can be de-registered
    type handlerRegistration struct {
    	registration cache.ResourceEventHandlerRegistration
    	// handler is the actual handler. Note this does NOT have the filtering applied.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top