Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 478 for Identical (0.42 sec)

  1. tensorflow/c/tf_datatype.h

    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // --------------------------------------------------------------------------
    // TF_DataType holds the type for a scalar value.  E.g., one slot in a tensor.
    // The enum values here are identical to corresponding values in types.proto.
    typedef enum TF_DataType {
      TF_FLOAT = 1,
      TF_DOUBLE = 2,
      TF_INT32 = 3,  // Int32 tensors are always in 'host' memory.
      TF_UINT8 = 4,
      TF_INT16 = 5,
      TF_INT8 = 6,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:13:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/go/types/util.go

    	"go/token"
    )
    
    const isTypes2 = false
    
    // cmpPos compares the positions p and q and returns a result r as follows:
    //
    // r <  0: p is before q
    // r == 0: p and q are the same position (but may not be identical)
    // r >  0: p is after q
    //
    // If p and q are in different files, p is before q if the filename
    // of p sorts lexicographically before the filename of q.
    func cmpPos(p, q token.Pos) int { return int(p - q) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/closure.go

    	// Force type conversion from *struct to the func type.
    	cfn := typecheck.ConvNop(addr, clo.Type())
    
    	// non-escaping temp to use, if any.
    	if x := clo.Prealloc; x != nil {
    		if !types.Identical(typ, x.Type()) {
    			panic("closure type does not match order's assigned type")
    		}
    		addr.Prealloc = x
    		clo.Prealloc = nil
    	}
    
    	return walkExpr(cfn, init)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/WtpFacetTest.groovy

            facet.load(customFacetReader)
            def roundTripped = tmpDir.file("facet.xml")
            facet.store(roundTripped)
    
            then:
            XMLUnit.compareXML(customFacetReader.text, roundTripped.text).identical()
        }
    
        private InputStream getCustomFacetReader() {
            getClass().getResourceAsStream('customOrgEclipseWstCommonProjectFacetCoreXml.xml')
        }
    
        private Facet createSomeFacet() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/func.go

    		// information further down the call chain to know if we
    		// were testing a method receiver for unexported fields.
    		// It isn't necessary, so just do a sanity check.
    		tp := t.Recv().Type
    
    		if l.X == nil || !types.Identical(l.X.Type(), tp) {
    			base.Fatalf("method receiver")
    		}
    
    	default:
    		n.SetOp(ir.OCALLFUNC)
    		if t.Kind() != types.TFUNC {
    			if o := l; o.Name() != nil && types.BuiltinPkg.Lookup(o.Sym().Name).Def != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOverrideInfoProvider.kt

         * original declared symbol.
         *
         * Such situation can also happen for intersection symbols (in case of multiple super types containing symbols with identical signature
         * after specialization) and delegation.
         */
        public val KaCallableSymbol.unwrapFakeOverrides: KaCallableSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/README.adoc

    Running the tests and generate the report:
    
    [listing.terminal.sample-command]
    ----
    $ ./gradlew testCodeCoverageReport
    
    BUILD SUCCESSFUL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/WtpComponentTest.groovy

            def roundTripped = tmpDir.file("component.xml")
            component.store(roundTripped)
    
            then:
            XMLUnit.compareXML(customComponentReader.text, roundTripped.text).identical()
    
        }
    
        private InputStream getCustomComponentReader() {
            getClass().getResourceAsStream('customOrgEclipseWstCommonComponent.xml')
        }
    
        private List createSomeWbModuleEntries() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue6977.go

    type J interface { g(); String() string }
    
    type IJ1 = interface { I; J }
    type IJ2 = interface { f(); g(); String() string }
    
    var _ = (*IJ1)(nil) == (*IJ2)(nil) // static assert that IJ1 and IJ2 are identical types
    
    // The canonical example.
    
    type ReadWriteCloser interface { io.ReadCloser; io.WriteCloser }
    
    // Some more cases.
    
    type M interface { m() }
    type M32 interface { m() int32 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:04:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/README.adoc

    Running the tests and generate the report:
    
    [listing.terminal.sample-command]
    ----
    $ ./gradlew testAggregateTestReport
    
    BUILD SUCCESSFUL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top