Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for rend (0.08 sec)

  1. cmd/site-replication.go

    }
    
    // Init - initialize the site replication manager.
    func (c *SiteReplicationSys) Init(ctx context.Context, objAPI ObjectLayer) error {
    	go c.startHealRoutine(ctx, objAPI)
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    	for {
    		err := c.loadFromDisk(ctx, objAPI)
    		if err == errConfigNotFound {
    			return nil
    		}
    		if err == nil {
    			break
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //		See https://golang.org/ref/mod#build-commands for details.
    //	-modcacherw
    //		leave newly-created directories in the module cache read-write
    //		instead of making them read-only.
    //	-modfile file
    //		in module aware mode, read (and possibly write) an alternate go.mod
    //		file instead of the one in the module root directory. A file named
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/trace/testdata/go122.test

    String id=29
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_unix.go"
    String id=30
    	data="internal/poll.(*FD).Read"
    String id=31
    	data="net.(*netFD).Read"
    String id=32
    	data="/usr/local/google/home/mknyszek/work/go-1/src/net/fd_posix.go"
    String id=33
    	data="net.(*conn).Read"
    String id=34
    	data="/usr/local/google/home/mknyszek/work/go-1/src/net/net.go"
    String id=35
    	data="main.main"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    				// Find start of line.
    				start := bytes.LastIndex(src[:idx], []byte("\n"))
    				if start == -1 {
    					start = 0
    				}
    
    				// Find end of line.
    				end := bytes.Index(src[idx:], []byte("\n"))
    				if end == -1 {
    					end = len(src)
    				} else {
    					end += idx
    				}
    
    				// Check for first line comment in line.
    				// We don't worry about /* */ comments,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               /*default=*/"MoveTransposeDirection::kBegin", "Move transposes to the beginning or"
               " the end of the block where they are defined.",
               "llvm::cl::values(clEnumValN(MoveTransposeDirection::kBegin, \"begin\", \"beginning of the block\"),"
               "clEnumValN(MoveTransposeDirection::kEnd, \"end\", \"end of the block\"))">
      ];
    }
    
    def BroadcastFoldPass : Pass<"tf-broadcast-fold", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CallTest.kt

              call: Call,
              response: Response,
            ) {
              val bytes = response.body.byteStream()
              assertThat(bytes.read()).isEqualTo('a'.code)
              assertThat(bytes.read()).isEqualTo('b'.code)
              assertThat(bytes.read()).isEqualTo('c'.code)
    
              // This request will share a connection with 'A' cause it's all done.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    			}
    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// record total time it takes to mount a volume. This is end to end time that includes waiting for volume to attach, node to be update
    		// plugin call to succeed
    		mountRequestTime := volumeToMount.MountRequestTime
    		totalTimeTaken := time.Since(mountRequestTime).Seconds()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                             .WithAttr("_outside", "O1"));
        Node* send =
            SendFromHost(ops::NodeOut(key_constant, 0), "F1", "F1", "O1", {e},
                         b2.opts().WithControlInput(e).WithAttr(
                             kXlaHasHostTransferAttrName, true));
    
        Node* s = Sequencer(
            b2.opts().WithName("F1_sequencer").WithControlInputs({recv, send}),
            "F1");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package statefulset
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"math"
    	"math/rand"
    	"reflect"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    		case 0:
    			cv = MakeChan(TypeOf(c), 1)
    			c = cv.Interface().(chan int)
    		}
    
    		// Send
    		cv.Send(ValueOf(2))
    		if i := <-c; i != 2 {
    			t.Errorf("reflect Send 2, native recv %d", i)
    		}
    
    		// Recv
    		c <- 3
    		if i, ok := cv.Recv(); i.Int() != 3 || !ok {
    			t.Errorf("native send 3, reflect Recv %d, %t", i.Int(), ok)
    		}
    
    		// TryRecv fail
    		val, ok := cv.TryRecv()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top