Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for copiedS (0.11 sec)

  1. cmd/batch-handlers.go

    				success := true
    				if err := r.ReplicateToTarget(ctx, api, c, result, retry); err != nil {
    					if miniogo.ToErrorResponse(err).Code == "PreconditionFailed" {
    						// pre-condition failed means we already have the object copied over.
    						return
    					}
    					// object must be deleted concurrently, allow these failures but do not count them
    					if isErrVersionNotFound(err) || isErrObjectNotFound(err) {
    						return
    					}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    // D (double word)  = 64 bit (frequently omitted)
    // W (word)         = 32 bit
    // H (half word)    = 16 bit
    // B (byte)         = 8 bit
    // S (single prec.) = 32 bit (double precision is omitted)
    
    // copied from ../../s390x/reg.go
    var regNamesS390X = []string{
    	"R0",
    	"R1",
    	"R2",
    	"R3",
    	"R4",
    	"R5",
    	"R6",
    	"R7",
    	"R8",
    	"R9",
    	"R10",
    	"R11",
    	"R12",
    	"g", // R13
    	"R14",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (ZeroExt16to(32|64) ...) => (MOVHZreg ...)
    (ZeroExt32to64 ...) => (MOVWZreg ...)
    
    (Slicemask <t> x) => (SRADconst (NEG <t> x) [63])
    
    // Lowering truncation
    // Because we ignore high parts of registers, truncates are just copies.
    (Trunc(16|32|64)to8 ...) => (Copy ...)
    (Trunc(32|64)to16 ...) => (Copy ...)
    (Trunc64to32 ...) => (Copy ...)
    
    // Lowering float <-> int
    (Cvt32to32F ...) => (CEFBRA ...)
    (Cvt32to64F ...) => (CDFBRA ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    #ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_
    #define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_
    
    
    // Value-parameterized tests allow you to test your code with different
    // parameters without writing multiple copies of the same test.
    //
    // Here is how you use value-parameterized tests:
    
    #if 0
    
    // To write value-parameterized tests, first you should define a fixture
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  5. src/html/template/exec_test.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests for template execution, copied from text/template.
    
    package template
    
    import (
    	"bytes"
    	"errors"
    	"flag"
    	"fmt"
    	"io"
    	"reflect"
    	"strings"
    	"sync"
    	"testing"
    	"text/template"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    #ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_
    #define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_
    
    
    // Value-parameterized tests allow you to test your code with different
    // parameters without writing multiple copies of the same test.
    //
    // Here is how you use value-parameterized tests:
    
    #if 0
    
    // To write value-parameterized tests, first you should define a fixture
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/asm5.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_test.cc

        int num_retvals = 1;
        TFE_Execute(matmul, &retvals[0], &num_retvals, status.get());
        ASSERT_EQ(TF_GetCode(status.get()), TF_OK) << TF_Message(status.get());
    
        // The CPU handle should have been copied and have a mirror on the GPU
        ASSERT_TRUE(cpu_arg->HasLocalMirror(gpu_device));
    
        TFE_DeleteOp(matmul);
        TFE_DeleteTensorHandle(retvals[0]);
        TFE_DeleteTensorHandle(hgpu);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    //
    // For example, the following string:
    //
    //	a b:"c d" 'e''f'  "g\""
    //
    // Would be parsed as:
    //
    //	[]string{"a", "b:c d", "ef", `g"`}
    //
    // [copied from src/go/build/build.go]
    func splitQuoted(s string) (r []string, err error) {
    	var args []string
    	arg := make([]rune, len(s))
    	escaped := false
    	quoted := false
    	quote := '\x00'
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top