Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for tape_ (0.06 sec)

  1. tensorflow/c/experimental/gradients/nn_grad_test.cc

    #include "tensorflow/c/eager/c_api_test_util.h"
    #include "tensorflow/c/eager/unified_api_testutil.h"
    #include "tensorflow/c/experimental/gradients/grad_test_helper.h"
    #include "tensorflow/c/experimental/gradients/tape/tape_context.h"
    #include "tensorflow/c/experimental/ops/nn_ops.h"
    #include "tensorflow/c/tf_status_helper.h"
    #include "tensorflow/core/platform/tensor_float_32_utils.h"
    #include "tensorflow/core/platform/test.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

                           TestPartResult::Type type,
                           const string& substr);
      ~SingleFailureChecker();
     private:
      const TestPartResultArray* const results_;
      const TestPartResult::Type type_;
      const string substr_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(SingleFailureChecker);
    };
    
    }  // namespace internal
    
    }  // namespace testing
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. fastapi/dependencies/utils.py

            else:
                alias = field_info.alias or param_name
            field_info.alias = alias
            field = create_response_field(
                name=param_name,
                type_=use_annotation_from_field_info,
                default=field_info.default,
                alias=alias,
                required=field_info.default in (Required, Undefined),
                field_info=field_info,
            )
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:52:56 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    [source,java]
    .Resource.java
    ----
    include::{snippetsPath}/plugins/readOnlyNestedProperty/groovy/buildSrc/src/main/java/Resource.java[tags=resource]
    ----
    
    A _named managed type_ is a managed type that additionally has an abstract property "name" of type `String`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    func FPOP2S(m uint32, s uint32, type_ uint32, op uint32) uint32 {
    	return m<<31 | s<<29 | 0x1E<<24 | type_<<22 | 1<<21 | op<<12 | 2<<10
    }
    
    func FPOP3S(m uint32, s uint32, type_ uint32, op uint32, op2 uint32) uint32 {
    	return m<<31 | s<<29 | 0x1F<<24 | type_<<22 | op<<21 | op2<<15
    }
    
    func FPCVTI(sf uint32, s uint32, type_ uint32, rmode uint32, op uint32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. docs/fr/docs/features.md

    Plus jamais vous ne vous tromperez en tapant le nom d'une clé, vous ne ferez des aller-retour entre votre code et la documentation ou vous ne scrollerez de haut en bas afin d'enfin savoir si vous devez taper `username` ou `user_name`.
    
    ### Court
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/asm0.go

    	o1 := uint32(0)
    	o2 := uint32(0)
    	o3 := uint32(0)
    	o4 := uint32(0)
    
    	add := AADDU
    
    	if c.ctxt.Arch.Family == sys.MIPS64 {
    		add = AADDVU
    	}
    	switch o.type_ {
    	default:
    		c.ctxt.Diag("unknown type %d %v", o.type_)
    		prasm(p)
    
    	case 0: /* pseudo ops */
    		break
    
    	case 1: /* mov r1,r2 ==> OR r1,r0,r2 */
    		a := AOR
    		if p.As == AMOVW && c.ctxt.Arch.Family == sys.MIPS64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/asm.go

    	o1 := uint32(0)
    	o2 := uint32(0)
    	o3 := uint32(0)
    	o4 := uint32(0)
    	o5 := uint32(0)
    
    	add := AADDU
    	add = AADDVU
    
    	switch o.type_ {
    	default:
    		c.ctxt.Diag("unknown type %d %v", o.type_)
    		prasm(p)
    
    	case 0: // pseudo ops
    		break
    
    	case 1: // mov r1,r2 ==> OR r1,r0,r2
    		a := AOR
    		if p.As == AMOVW {
    			a = ASLL
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  9. src/cmd/link/link_test.go

    		if major < 11 {
    			t.Errorf("LC_BUILD_VERSION version %d.%d.%d < 11.0.0", major, minor, patch)
    		}
    	}
    	for _, cmd := range exem.Loads {
    		raw := cmd.Raw()
    		type_ := exem.ByteOrder.Uint32(raw)
    		if type_ != LC_BUILD_VERSION {
    			continue
    		}
    		osVer := exem.ByteOrder.Uint32(raw[12:])
    		checkMin(osVer)
    		sdkVer := exem.ByteOrder.Uint32(raw[16:])
    		checkMin(sdkVer)
    		found = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. src/archive/tar/common.go

    // Copyright 2009 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.
    
    // Package tar implements access to tar archives.
    //
    // Tape archives (tar) are a file format for storing a sequence of files that
    // can be read and written in a streaming manner.
    // This package aims to cover most variations of the format,
    // including those produced by GNU and BSD tar tools.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top