Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 653 for copied32 (0.25 sec)

  1. tensorflow/c/eager/custom_device_testutil.cc

    #include "tensorflow/core/platform/test.h"
    
    namespace {
    
    struct LoggingDevice {
      tensorflow::string device_name;
      tensorflow::string underlying_device;
      // Set to true whenever a TensorHandle is copied onto the device
      bool* arrived_flag;
      // Set to true whenever an operation is executed
      bool* executed_flag;
      // If true, only explicit op placements are accepted. If false, uses
      // type-based dispatch.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 03 20:47:31 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_conversion_utils.cc

                       BuiltinOperator_PLACEHOLDER_FOR_GREATER_OP_CODES);
    }
    
    // The following methods are the following `OperatorCode` table object creation
    // methods for backward compatibility.  These are manually copied from the
    // flatbuffer generated code from schema v3. They serve as overloads for the
    // v3a's CreateOperatorCode functions in schema_generated.h and enable code that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/waitgroup.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package waitgroup
    
    import (
    	"fmt"
    	"sync"
    )
    
    // SafeWaitGroup must not be copied after first use.
    type SafeWaitGroup struct {
    	wg sync.WaitGroup
    	mu sync.RWMutex
    	// wait indicate whether Wait is called, if true,
    	// then any Add with positive delta will return error.
    	wait bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 11 03:04:14 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/Quantiles.java

         * @param dataset the dataset to do the calculation on, which must be non-empty, which will be
         *     cast to doubles (with any associated lost of precision), and which will not be mutated by
         *     this call (it is copied instead)
         * @return the quantile value
         */
        public double compute(Collection<? extends Number> dataset) {
          return computeInPlace(Doubles.toArray(dataset));
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/java/modules-with-transform/README.adoc

    For that, a plugin called `extra-java-module-info` is defined in the `buildSrc` folder.
    This plugin can be copied into another project and adjusted as needed to solve use cases where it is desired to treat every dependency as a Java Module.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/utils/fake_quant_utils.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // Copied and modified from
    // //third_party/tensorflow/compiler/mlir/lite/utils/fake_quant_utils.cc
    #include "tensorflow/compiler/mlir/quantization/tensorflow/utils/fake_quant_utils.h"
    
    namespace mlir {
    namespace quant {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/CharStreams.java

       * close or flush either object.
       *
       * @param from the object to read from
       * @param to the object to write to
       * @return the number of characters copied
       * @throws IOException if an I/O error occurs
       */
      @CanIgnoreReturnValue
      public static long copy(Readable from, Appendable to) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/seh.go

    		off, cached := uwcache[name]
    		if !cached {
    			off = xdata.Size()
    			uwcache[name] = off
    			xdata.AddBytes(ldr.Data(uw))
    			// The SEH unwind data can contain relocations,
    			// make sure those are copied over.
    			rels := ldr.Relocs(uw)
    			for i := 0; i < rels.Count(); i++ {
    				r := rels.At(i)
    				rel, _ := xdata.AddRel(r.Type())
    				rel.SetOff(int32(off) + r.Off())
    				rel.SetSiz(r.Siz())
    				rel.SetSym(r.Sym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/ntlm/NTLMSchemeFactory.java

    import org.apache.http.protocol.HttpContext;
    
    import jcifs.ntlmssp.NtlmFlags;
    import jcifs.ntlmssp.Type1Message;
    import jcifs.ntlmssp.Type2Message;
    import jcifs.ntlmssp.Type3Message;
    import jcifs.util.Base64;
    
    // Copied from http://hc.apache.org/httpcomponents-client-ga/ntlm.html
    public class NTLMSchemeFactory implements AuthSchemeProvider {
    
        @Override
        public AuthScheme create(HttpContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/util/label/label.go

    // limitations under the License.
    
    package label
    
    import (
    	"strings"
    
    	"istio.io/api/label"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/network"
    )
    
    // copied from https://github.com/kubernetes/api/blob/master/core/v1/well_known_labels.go
    // It is to remove dependency on k8s.io/api/core/v1
    const (
    	LabelHostname = "kubernetes.io/hostname"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top