Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for constInt8 (0.17 sec)

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

        // output type doesn't have to be static but if input types and indices are
        // constant, then the output type can be statically determined.
        RankedTensorType out_ty = mlir::dyn_cast<RankedTensorType>(op.getType());
        if (!out_ty || !out_ty.hasStaticShape()) return failure();
    
        // Extract out all the constant indices' attributes and verify that data
        // types are static.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_s390x.s

    #define x_ptr   R2
    #define y_ptr   R3
    #define CPOOL   R4
    
    // Parameters
    #define X0    V0
    #define X1    V1
    #define Y0    V2
    #define Y1    V3
    #define T0    V4
    #define T1    V5
    
    // Constants
    #define P0    V30
    #define P1    V31
    TEXT ·p256Mul(SB), NOSPLIT, $0
    	MOVD res+0(FP), res_ptr
    	MOVD in1+8(FP), x_ptr
    	MOVD in2+16(FP), y_ptr
    
    	VL   (0*16)(x_ptr), X0
    	VPDI $0x4, X0, X0, X0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // the FOLDERID_ constants, and chosen and optionally created based on a KF_ flag.
    func KnownFolderPath(folderID *KNOWNFOLDERID, flags uint32) (string, error) {
    	return Token(0).KnownFolderPath(folderID, flags)
    }
    
    // KnownFolderPath returns a well-known folder path for the user token, specified by one of
    // the FOLDERID_ constants, and chosen and optionally created based on a KF_ flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapsTest.java

        try {
          Maps.toMap((Iterable<String>) strings, Functions.constant("foo"));
          fail();
        } catch (NullPointerException expected) {
        }
      }
    
      public void testToMapWithNullValues() {
        Iterable<String> strings = ImmutableList.of("one", "two", "three");
        try {
          Maps.toMap(strings, Functions.constant(null));
          fail();
        } catch (NullPointerException expected) {
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	// The scavenger can no longer be done with this chunk now that
    	// new memory has been freed into it.
    	sc.setNonEmpty()
    }
    
    type piController struct {
    	kp float64 // Proportional constant.
    	ti float64 // Integral time constant.
    	tt float64 // Reset time.
    
    	min, max float64 // Output boundaries.
    
    	// PI controller state.
    
    	errIntegral float64 // Integral of the error from t=0 to now.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                        problems.add(new ModelProblemCollectorRequest(Severity.FATAL, ModelProblem.Version.V31)
                                .setMessage("Version must be a constant")
                                .setLocation(childModel.getLocation("")));
    
                    } else {
                        if (rawChildVersionReferencesParent(rawChildModelVersion)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    		}
    		return after[:n]
    	}
    	panic("missing package header: " + src)
    }
    
    func TestValuesInfo(t *testing.T) {
    	var tests = []struct {
    		src  string
    		expr string // constant expression
    		typ  string // constant type
    		val  string // constant value
    	}{
    		{`package a0; const _ = false`, `false`, `untyped bool`, `false`},
    		{`package a1; const _ = 0`, `0`, `untyped int`, `0`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    	heapArenaWords = heapArenaBytes / goarch.PtrSize
    
    	// logHeapArenaBytes is log_2 of heapArenaBytes. For clarity,
    	// prefer using heapArenaBytes where possible (we need the
    	// constant to compute some other constants).
    	logHeapArenaBytes = (6+20)*(_64bit*(1-goos.IsWindows)*(1-goarch.IsWasm)*(1-goos.IsIos*goarch.IsArm64)) + (2+20)*(_64bit*goos.IsWindows) + (2+20)*(1-_64bit) + (2+20)*goarch.IsWasm + (2+20)*goos.IsIos*goarch.IsArm64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/html/template/exec_test.go

    )
    
    var execTests = []execTest{
    	// Trivial cases.
    	{"empty", "", "", nil, true},
    	{"text", "some text", "some text", nil, true},
    	{"nil action", "{{nil}}", "", nil, false},
    
    	// Ideal constants.
    	{"ideal int", "{{typeOf 3}}", "int", 0, true},
    	{"ideal float", "{{typeOf 1.0}}", "float64", 0, true},
    	{"ideal exp float", "{{typeOf 1e1}}", "float64", 0, true},
    	{"ideal complex", "{{typeOf 1i}}", "complex128", 0, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route_test.go

    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    		vs := virtualServiceWithCatchAllRoute
    		if vs.Annotations == nil {
    			vs.Annotations = make(map[string]string)
    		}
    		vs.Annotations[constants.InternalRouteSemantics] = constants.RouteSemanticsIngress
    
    		routes, err := route.BuildHTTPRoutesForVirtualService(node(cg), vs,
    			serviceRegistry, nil, 8080, gatewayNames, route.RouteOptions{})
    		xdstest.ValidateRoutes(t, routes)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
Back to top