Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for getStrings (0.19 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

        }
    
        def "can use a mapped value provider"() {
            buildFile """
                abstract class MyTask extends DefaultTask {
                    @Input
                    abstract ListProperty<String> getStrings()
    
                    @OutputFile
                    abstract RegularFileProperty getOutput()
    
                    @TaskAction
                    def action() {
                        def outputFile = output.get().asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                            performanceResults.setOperatingSystem(testExecutions.getString(5));
                            performanceResults.setJvm(testExecutions.getString(6));
                            performanceResults.setVcsBranch(testExecutions.getString(7).trim());
                            performanceResults.setVcsCommits(split(testExecutions.getString(8)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. cni/pkg/cmd/root.go

    		LabelKey:           viper.GetString(constants.RepairLabelKey),
    		LabelValue:         viper.GetString(constants.RepairLabelValue),
    		NodeName:           viper.GetString(constants.RepairNodeName),
    		SidecarAnnotation:  viper.GetString(constants.RepairSidecarAnnotation),
    		InitContainerName:  viper.GetString(constants.RepairInitContainerName),
    		InitTerminationMsg: viper.GetString(constants.RepairInitTerminationMsg),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                            performanceResults.setJvm(testExecutions.getString(10));
                            performanceResults.setVcsBranch(mapVcsBranch(channelPatterns.get(0), testExecutions.getString(11).trim()));
                            performanceResults.setVcsCommits(ResultsStoreHelper.split(testExecutions.getString(12)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/AbstractWritableResultsStore.groovy

                            String testClass = experimentTimes.getString(++resultIdx)
                            String testName = experimentTimes.getString(++resultIdx)
                            String testProject = experimentTimes.getString(++resultIdx)
                            OperatingSystem os = OperatingSystem.valueOf(experimentTimes.getString(++resultIdx))
                            long avgDuration = experimentTimes.getLong(++resultIdx)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

                        return "REALPATH for ${buffer.getString()}"
                    case SftpConstants.SSH_FXP_STAT:
                        return "STAT for ${buffer.getString()}"
                    case SftpConstants.SSH_FXP_OPENDIR:
                        return "OPENDIR for ${buffer.getString()}"
                    case SftpConstants.SSH_FXP_READDIR:
                        return "READDIR for ${buffer.getString()}"
                    case SftpConstants.SSH_FXP_MKDIR:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. pkg/kubelet/types/types.go

    	return &Timestamp{parsed}
    }
    
    // Get returns the time as time.Time.
    func (t *Timestamp) Get() time.Time {
    	return t.time
    }
    
    // GetString returns the time in the string format using the RFC3339NanoFixed
    // layout.
    func (t *Timestamp) GetString() string {
    	return t.time.Format(logs.RFC3339NanoFixed)
    }
    
    // SortedContainerStatuses is a type to help sort container statuses based on container names.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. 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)
  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