Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,175 for zero (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.cc

        buffer_shape.push_back(dim);
      }
      auto zero = CreateScalarConst(0, builder, op->getLoc());
      if (getElementTypeOrSelf(zero.getType()) != element_dtype) {
        zero = builder.create<TF::CastOp>(
            op->getLoc(),
            ArrayRef<Type>{tensorflow::GetTypeFromTFTensorShape({}, element_dtype)},
            ArrayRef<Value>{zero});
      }
      auto buffer_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/strconv/atof.go

    	var exp int
    	var mant uint64
    
    	// Zero is always a special case.
    	if d.nd == 0 {
    		mant = 0
    		exp = flt.bias
    		goto out
    	}
    
    	// Obvious overflow/underflow.
    	// These bounds are for 64-bit floats.
    	// Will have to change if we want to support 80-bit floats in the future.
    	if d.dp > 310 {
    		goto overflow
    	}
    	if d.dp < -330 {
    		// zero
    		mant = 0
    		exp = flt.bias
    		goto out
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    	}
    
    	if sv.IsNil() {
    		dv.Set(reflect.Zero(dt))
    		return nil
    	}
    	dv.Set(reflect.MakeMap(dt))
    	for _, key := range sv.MapKeys() {
    		value := reflect.New(dt.Elem()).Elem()
    		if val := unwrapInterface(sv.MapIndex(key)); val.IsValid() {
    			if err := fromUnstructured(val, value, ctx); err != nil {
    				return err
    			}
    		} else {
    			value.Set(reflect.Zero(dt.Elem()))
    		}
    		if st.Key().AssignableTo(dt.Key()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "BSFW", argLength: 1, reg: gp11, asm: "BSFW", clobberFlags: true}, // arg0 # of low-order zeroes ; undef if zero
    		{name: "LoweredCtz32", argLength: 1, reg: gp11, clobberFlags: true},      // arg0 # of low-order zeroes
    
    		{name: "BSRL", argLength: 1, reg: gp11, asm: "BSRL", clobberFlags: true}, // arg0 # of high-order zeroes ; undef if zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. src/runtime/os2_aix.go

    	mp := gp.m
    	resetLibcall := true
    	if mp.libcallsp == 0 {
    		mp.libcallg.set(gp)
    		mp.libcallpc = getcallerpc()
    		// sp must be the last, because once async cpu profiler finds
    		// all three values to be non-zero, it will use them
    		mp.libcallsp = getcallersp()
    	} else {
    		resetLibcall = false // See comment in sys_darwin.go:libcCall
    	}
    
    	c := libcall{
    		fn:   uintptr(unsafe.Pointer(fn)),
    		n:    0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. src/net/tcpsock.go

    	// the first keep-alive probe is sent.
    	// If zero, a default value of 15 seconds is used.
    	Idle time.Duration
    
    	// Interval is the time between keep-alive probes.
    	// If zero, a default value of 15 seconds is used.
    	Interval time.Duration
    
    	// Count is the maximum number of keep-alive probes that
    	// can go unanswered before dropping a connection.
    	// If zero, a default value of 9 is used.
    	Count int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

        }
    
        def "resolves macro function with zero args with body that is a string constant"() {
            given:
            sourceFile << """
                #define HEADER() "hello.h"
                #include HEADER( )
            """
    
            expect:
            resolve() == [header]
        }
    
        def "resolves macro function with zero args with body that is a system include"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    		{name: "MOVHstorezero", argLength: 2, reg: gpstore0, aux: "SymOff", asm: "MOVH", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"}, // store 2 bytes of zero to arg0 + auxInt + aux.  arg1=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    		{name: "MOVHstorezero", argLength: 2, reg: gpstore0, aux: "SymOff", asm: "MOVH", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"}, // store 2 bytes of zero to arg0 + auxInt + aux.  arg1=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

                def buildScript = pluginApplicationResults.find { it.plugin instanceof ScriptPluginIdentifier && it.plugin.uri == new File(buildscriptDir, "build.gradle").toURI() }
                assert buildScript.totalConfigurationTime >= Duration.ZERO
                assert buildScript.plugin.displayName == "build.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top