Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for gbyte (0.3 sec)

  1. pilot/pkg/bootstrap/certcontroller.go

    // and local certificates are not found.
    //
    // The roots are loaded from mesh config.
    func (s *Server) initDNSCertsK8SRA() error {
    	var certChain, keyPEM, caBundle []byte
    	var err error
    	pilotCertProviderName := features.PilotCertProvider
    
    	signerName := strings.TrimPrefix(pilotCertProviderName, constants.CertProviderKubernetesSignerPrefix)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    	if l.SubZone == "" {
    		return resp
    	}
    	resp += "/" + l.SubZone
    	return resp
    }
    
    // GetFailoverPriorityLabels returns a byte array which contains failover priorities of the proxy.
    func GetFailoverPriorityLabels(proxyLabels map[string]string, priorities []string) []byte {
    	var b bytes.Buffer
    	for _, key := range priorities {
    		b.WriteString(key)
    		b.WriteRune(':')
    		b.WriteString(proxyLabels[key])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. cmd/iam-object-store.go

    			minioMetaBucket: path.Join(minioMetaBucket, objPath),
    		})
    		if err != nil {
    			return err
    		}
    	}
    	return saveConfig(ctx, iamOS.objAPI, objPath, data)
    }
    
    func decryptData(data []byte, objPath string) ([]byte, error) {
    	if utf8.Valid(data) {
    		return data, nil
    	}
    
    	pdata, err := madmin.DecryptData(globalActiveCred.String(), bytes.NewReader(data))
    	if err == nil {
    		return pdata, nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. cmd/iam-etcd-store.go

    		})
    		if err != nil {
    			return err
    		}
    	}
    	return saveKeyEtcd(ctx, ies.client, itemPath, data, opts...)
    }
    
    func getIAMConfig(item interface{}, data []byte, itemPath string) error {
    	data, err := decryptData(data, itemPath)
    	if err != nil {
    		return err
    	}
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	return json.Unmarshal(data, item)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/list.md

    | `minio_s3_requests_waiting_total`             | Number of S3 requests in the waiting queue.              |
    | `minio_s3_requests_ttfb_seconds_distribution` | Distribution of the time to first byte across API calls. |
    | `minio_s3_traffic_received_bytes`             | Total number of s3 bytes received.                       |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/endpointshards.go

    	return string(sk.Provider) + "/" + string(sk.Cluster) // format: %s/%s
    }
    
    // MarshalText implements the TextMarshaler interface (for json key usage)
    func (sk ShardKey) MarshalText() (text []byte, err error) {
    	return []byte(sk.String()), nil
    }
    
    // EndpointShards holds the set of endpoint shards of a service. Registries update
    // individual shards incrementally. The shards are aggregated and split into
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    		}
    	}
    	buffer.Write(hostsEntriesFromHostAliases(hostAliases))
    	return buffer.Bytes()
    }
    
    func hostsEntriesFromHostAliases(hostAliases []v1.HostAlias) []byte {
    	if len(hostAliases) == 0 {
    		return []byte{}
    	}
    
    	var buffer bytes.Buffer
    	buffer.WriteString("\n")
    	buffer.WriteString("# Entries added by HostAliases.\n")
    	// for each IP, write all aliases onto single line in hosts file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/client.go

    		ResourceVersion: config.ResourceVersion,
    		OwnerReferences: config.OwnerReferences,
    		UID:             types.UID(config.UID),
    	}
    }
    
    func genPatchBytes(oldRes, modRes runtime.Object, patchType types.PatchType) ([]byte, error) {
    	oldJSON, err := json.Marshal(oldRes)
    	if err != nil {
    		return nil, fmt.Errorf("failed marhsalling original resource: %v", err)
    	}
    	newJSON, err := json.Marshal(modRes)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    		return
    	}
    
    	defer func() {
    		var data []byte
    		if buf != nil {
    			data = buf.Bytes()
    		}
    
    		if len(data) == 0 {
    			return
    		}
    
    		globalCacheConfig.Set(&cache.ObjectInfo{
    			Key:          objInfo.Name,
    			Bucket:       objInfo.Bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/telemetry_logging.go

    			},
    		}
    	case meshconfig.MeshConfig_JSON:
    		jsonLogStruct := EnvoyJSONLogFormatIstio
    		if len(mesh.AccessLogFormat) > 0 {
    			parsedJSONLogStruct := structpb.Struct{}
    			if err := protomarshal.UnmarshalAllowUnknown([]byte(mesh.AccessLogFormat), &parsedJSONLogStruct); err != nil {
    				log.Errorf("error parsing provided json log format, default log format will be used: %v", err)
    			} else {
    				jsonLogStruct = &parsedJSONLogStruct
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top