Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for typeOff (0.26 sec)

  1. src/text/template/exec_test.go

    	// 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},
    	{"ideal int", "{{typeOf " + bigInt + "}}", "int", 0, true},
    	{"ideal too big", "{{typeOf " + bigUint + "}}", "", 0, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/adminlte.min.js.map

    $.extend({}, Default, $(this).data())\n\n      if (!data) {\n        data = new CardWidget($(this), _options)\n        $(this).data(DATA_KEY, typeof config === 'string' ? data: config)\n      }\n\n      if (typeof config === 'string' && config.match(/collapse|expand|remove|toggle|maximize|minimize|toggleMaximize/)) {\n        data[config]()\n      } else if (typeof config === 'object') {\n        data._init($(this))\n      }\n    }\n  }\n\n  /**\n   * Data API\n   * ==================================...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		if err != nil {
    			return nil, err
    		}
    		if foundDirectiveMarker {
    			continue
    		}
    
    		if reflect.TypeOf(originalValue) != reflect.TypeOf(modifiedValue) {
    			// Types have changed, so add to patch
    			if !diffOptions.IgnoreChangesAndAdditions {
    				patch[key] = modifiedValue
    			}
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. src/html/template/escape_test.go

    			`<button onclick='alert( true )'>`,
    		},
    		{
    			"jsNilValueTyped",
    			"<button onclick='alert(typeof{{.Z}})'>",
    			`<button onclick='alert(typeof null )'>`,
    		},
    		{
    			"jsNilValueUntyped",
    			"<button onclick='alert(typeof{{.U}})'>",
    			`<button onclick='alert(typeof null )'>`,
    		},
    		{
    			"jsObjValue",
    			"<button onclick='alert({{.A}})'>",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    	var totalPriority int64
    	scorePlugins := reflect.ValueOf(&f.scorePlugins).Elem()
    	pluginType := scorePlugins.Type().Elem()
    	for _, e := range plugins {
    		pg := f.pluginsMap[e.Name]
    		if !reflect.TypeOf(pg).Implements(pluginType) {
    			continue
    		}
    
    		// We append MultiPoint plugins to the list of Score plugins. So if this plugin has already been
    		// encountered, let the individual Score weight take precedence.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Test is not copyable.
    class GTEST_API_ Test {
     public:
      friend class TestInfo;
    
      // Defines types for pointers to functions that set up and tear down
      // a test case.
      typedef internal::SetUpTestCaseFunc SetUpTestCaseFunc;
      typedef internal::TearDownTestCaseFunc TearDownTestCaseFunc;
    
      // The d'tor is virtual as we intend to inherit from Test.
      virtual ~Test();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Test is not copyable.
    class GTEST_API_ Test {
     public:
      friend class TestInfo;
    
      // Defines types for pointers to functions that set up and tear down
      // a test case.
      typedef internal::SetUpTestCaseFunc SetUpTestCaseFunc;
      typedef internal::TearDownTestCaseFunc TearDownTestCaseFunc;
    
      // The d'tor is virtual as we intend to inherit from Test.
      virtual ~Test();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	r = r*1664525 + 1013904223
    	randN = r
    	randmu.Unlock()
    	return strconv.Itoa(int(1e9 + r%1e9))[1:]
    }
    
    // isSameType - compares two object types via reflect.TypeOf
    func isSameType(obj1, obj2 interface{}) bool {
    	return reflect.TypeOf(obj1) == reflect.TypeOf(obj2)
    }
    
    // TestServer encapsulates an instantiation of a MinIO instance with a temporary backend.
    // Example usage:
    //
    //	s := StartTestServer(t,"Erasure")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function_test.cc

    namespace tensorflow {
    namespace {
    
    // Specification for expected input/output and its type.
    // DataType value of DT_INVALID signifies that we don't want to
    // check the data type.
    typedef std::pair<string, DataType> IOSpec;
    
    const char* kFeedStackToString = "File \"feed.cc\", line 10, in alpha";
    const char* kNegStackToString = "File \"neg.cc\", line 15, in beta";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    /*! UIkit 3.3.2 | http://www.getuikit.com | (c) 2014 - 2019 YOOtheme | MIT License */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
Back to top