Skip to content

Commit

Permalink
godoc
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislusf committed Oct 24, 2015
1 parent 8ec493b commit 4427f0c
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 9 deletions.
2 changes: 2 additions & 0 deletions agent/agent_server.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Package agent runs on servers with computing resources, and executes
// tasks sent by driver.
package agent

import (
Expand Down
2 changes: 1 addition & 1 deletion driver/context_driver.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Driver coordinates distributed execution
// Pacakge driver coordinates distributed execution.
package driver

import (
Expand Down
2 changes: 1 addition & 1 deletion driver/plan/group.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Optimize task execution by grouping tasks that are connected.
// Package plan optimizes task execution by grouping tasks that are connected.
package plan

import (
Expand Down
3 changes: 2 additions & 1 deletion driver/rsync/http_server.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Server and client to copy files between driver and agent.
// Package rsync adds file server and copying client to copy files
// between glow driver and agent.
package rsync

import (
Expand Down
4 changes: 2 additions & 2 deletions flow/context.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This contains data structure for computation. Mostly Dataset operations
// such as Map/Reduce/Join/Sort etc
// Package flow contains data structure for computation.
// Mostly Dataset operations such as Map/Reduce/Join/Sort etc.
package flow

import (
Expand Down
3 changes: 2 additions & 1 deletion io/channels.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Generic network channel managed by agent.
// Package io creates network channels. The network channels are managed by
// glow agent.
package io

import (
Expand Down
2 changes: 1 addition & 1 deletion resource/resource.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// resource management
// Package resource manages computing resources and their locations.
package resource

import (
Expand Down
2 changes: 1 addition & 1 deletion resource/service_discovery/client/name_service_agent.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// client send heartbeats to master
// Package client send heartbeats to master.
package client

import (
Expand Down
3 changes: 2 additions & 1 deletion resource/service_discovery/master/master.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// master collects data from agents, and manage named network channels.
// Package master collects data from agents, and manage named network
// channels.
package master

import (
Expand Down

0 comments on commit 4427f0c

Please sign in to comment.