Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for getStrings (0.15 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r16/CustomModel.java

     */
    
    package org.gradle.integtests.tooling.r16;
    
    import java.util.Map;
    import java.util.Set;
    
    public interface CustomModel {
        String getValue();
    
        Thing getThing();
    
        Set<Thing> getThings();
    
        Map<String, Thing> getThingsByName();
    
        Thing findThing(String name);
    
        interface Thing {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 921 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowParameters.java

     * Example:
     * </p>
     * <pre>
     * public interface MyFlowParameters extends FlowParameters {
     *    Property&lt;String&gt; getString();
     *   {@literal @}ServiceReference Property&lt;MyBuildService&gt; getBuildService();
     * }
     * </pre>
     *
     * @see FlowAction
     * @since 8.1
     */
    @Incubating
    public interface FlowParameters {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:51:20 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. 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)
  7. tests/fuzz/compare_fuzzer.go

    	if err != nil {
    		return m, err
    	}
    	noOfEntries := qty % maxNoEntries
    	if noOfEntries == 0 {
    		return m, errors.New("a map of zero-length was created")
    	}
    	for i := 0; i < noOfEntries; i++ {
    		k, err := f.GetString()
    		if err != nil {
    			return m, err
    		}
    		v, err := f.GetBytes()
    		if err != nil {
    			return m, err
    		}
    		m[k] = v
    	}
    	return m, nil
    }
    
    func FuzzCompareDiff(data []byte) int {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 06:17:08 UTC 2022
    - 1.6K 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. android/guava-tests/test/com/google/common/io/TestCharSink.java

      private final TestByteSink byteSink;
    
      public TestCharSink(TestOption... options) {
        this.byteSink = new TestByteSink(options);
      }
    
      public String getString() {
        return new String(byteSink.getBytes(), UTF_8);
      }
    
      @Override
      public boolean wasStreamOpened() {
        return byteSink.wasStreamOpened();
      }
    
      @Override
      public boolean wasStreamClosed() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 2K bytes
    - Viewed (0)
Back to top