Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for codename (0.16 sec)

  1. cmd/admin-handlers.go

    	writeSuccessResponseJSON(w, jsonBytes)
    }
    
    // StartProfilingResult contains the status of the starting
    // profiling action in a given server - deprecated API
    type StartProfilingResult struct {
    	NodeName string `json:"nodeName"`
    	Success  bool   `json:"success"`
    	Error    string `json:"error"`
    }
    
    // StartProfilingHandler - POST /minio/admin/v3/profiling/start?profilerType={profilerType}
    // ----------
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  2. cmd/bucket-replication.go

    	if err != nil {
    		errStr = err.Error()
    	}
    	funcName := fmt.Sprintf("replication.(resyncID=%s)", resyncID)
    	return madmin.TraceInfo{
    		TraceType: madmin.TraceReplicationResync,
    		Time:      startTime,
    		NodeName:  globalLocalNodeName,
    		FuncName:  funcName,
    		Duration:  duration,
    		Path:      path,
    		Error:     errStr,
    	}
    }
    
    // delete resync metadata from replication resync state in memory
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Values.multiCluster.clusterName | default "Kubernetes" }} - name: POD_NAME valueFrom: fieldRef: fieldPath: metadata.name - name: POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: NODE_NAME valueFrom: fieldRef: fieldPath: spec.nodeName - name: INSTANCE_IP valueFrom: fieldRef: fieldPath: status.podIP - name: SERVICE_ACCOUNT valueFrom: fieldRef: fieldPath: spec.serviceAccountName {{- if .Values.meshConfig.defaultConfig.proxyMetadata }} {{- range $key, $value := .Values.meshConfi...
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  4. cmd/metrics-v2.go

    				},
    				Value: pluginAuthNMetrics.MaxSuccRTTMs,
    			},
    		}
    
    		return metrics
    	})
    	return mg
    }
    
    // replication metrics for each node - published to the cluster endpoint with nodename as label
    func getReplicationNodeMetrics(opts MetricsGroupOpts) *MetricsGroupV2 {
    	mg := &MetricsGroupV2{
    		cacheInterval:    1 * time.Minute,
    		metricsGroupOpts: opts,
    	}
    	const (
    		Online  = 1
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
Back to top