Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for getStrings (0.21 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

     public:
      // Constructs an empty Message.
      Message();
    
      // Copy constructor.
      Message(const Message& msg) : ss_(new ::std::stringstream) {  // NOLINT
        *ss_ << msg.GetString();
      }
    
      // Constructs a Message from a C-string.
      explicit Message(const char* str) : ss_(new ::std::stringstream) {
        *ss_ << str;
      }
    
    #if GTEST_OS_SYMBIAN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

     public:
      // Constructs an empty Message.
      Message();
    
      // Copy constructor.
      Message(const Message& msg) : ss_(new ::std::stringstream) {  // NOLINT
        *ss_ << msg.GetString();
      }
    
      // Constructs a Message from a C-string.
      explicit Message(const char* str) : ss_(new ::std::stringstream) {
        *ss_ << str;
      }
    
    #if GTEST_OS_SYMBIAN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/io/ResourceBundleUtilTest.java

        /**
         * @throws Exception
         */
        @Test
        public void testGetString() throws Exception {
            final ResourceBundle bundle = ResourceBundleUtil.getBundle("CLMessages");
            assertThat(bundle.getString("ECL0001"), is(notNullValue()));
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/message/MessageFormatter.java

                final String pattern = ResourceBundleUtil.getString(resourceBundle, key);
                if (pattern != null) {
                    return pattern;
                }
            }
            return resourceBundle.getString(messageCode);
        }
    
        /**
         * システム名を返します。
         *
         * @param messageCode
         *            メッセージコード
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/internal/xcoff/file.go

    // It stops once it finds 0 or reaches end of b.
    func cstring(b []byte) string {
    	var i int
    	for i = 0; i < len(b) && b[i] != 0; i++ {
    	}
    	return string(b[:i])
    }
    
    // getString extracts a string from an XCOFF string table.
    func getString(st []byte, offset uint32) (string, bool) {
    	if offset < 4 || int(offset) >= len(st) {
    		return "", false
    	}
    	return cstring(st[offset:]), true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectDecoratedTest.groovy

            when:
            def obj = create(BeanWithParameterizedTypeService, services)
    
            then:
            obj.things == [12]
            obj.getThings() == [12]
            obj.getProperty("things") == [12]
    
            def returnType = obj.getClass().getDeclaredMethod("getThings").genericReturnType
            assert returnType instanceof ParameterizedType
            assert returnType.rawType == List.class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/FieldUtil.java

         * @throws IllegalAccessRuntimeException
         *             {@link IllegalAccessException}が発生した場合
         * @see #getString(Field, Object)
         */
        public static String getString(final Field field) throws IllegalAccessRuntimeException {
            assertArgumentNotNull("field", field);
    
            return getString(field, null);
        }
    
        /**
         * {@link Field}の値を {@link String}として取得します。
         *
         * @param field
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r16/CustomToolingModelCrossVersionSpec.groovy

    import org.gradle.tooling.provider.model.ToolingModelBuilder
    import javax.inject.Inject
    
    apply plugin: CustomPlugin
    
    class CustomModel implements Serializable {
        String getValue() { 'greetings' }
        Set<CustomThing> getThings() { return [new CustomThing()] }
        Map<String, CustomThing> getThingsByName() { return [thing: new CustomThing()] }
    }
    class CustomThing implements Serializable {
    }
    class CustomBuilder implements ToolingModelBuilder {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r30/CustomToolingModelCrossVersionSpec.groovy

    }
    
    class CustomModel implements Serializable {
        static final INSTANCE = new CustomThing()
        String getValue() { 'greetings' }
        CustomThing getThing() { return INSTANCE }
        Set<CustomThing> getThings() { return [INSTANCE] }
        Map<String, CustomThing> getThingsByName() { return [child: INSTANCE] }
        CustomThing findThing(String name) { return INSTANCE }
    }
    
    class CustomThing implements Serializable {
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

            fun fromJson(jsonObject: JSONObject): ParallelizationMethod {
                val methodJsonObject = jsonObject.getJSONObject("parallelizationMethod") ?: return None
                return when (methodJsonObject.getString("name")) {
                    null -> None
                    TestDistribution::class.simpleName -> TestDistribution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:47:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top