Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 131 for VALUE1 (0.12 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/spock/Spock2FilteringIntegrationTest.groovy

            then:
            failureCauseContains("No tests found for given includes: [SubClass.$testMethod](--tests filter)")
    
            where:
            testMethod << ["sub unrolled test param=value1", "super unrolled test param=value1", "super super unrolled test param=value1"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/Tuple4.java

        /**
         * 1番目の値を返します。
         *
         * @return 1番目の値
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
         * 1番目の値を設定します。
         *
         * @param value1
         *            1番目の値
         */
        public void setValue1(final T1 value1) {
            this.value1 = value1;
        }
    
        /**
         * 2番目の値を返します。
         *
         * @return 2番目の値
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/Tuple5.java

         */
        public Tuple5(final T1 value1, final T2 value2, final T3 value3, final T4 value4, final T5 value5) {
            this.value1 = value1;
            this.value2 = value2;
            this.value3 = value3;
            this.value4 = value4;
            this.value5 = value5;
        }
    
        /**
         * 1番目の値を返します。
         *
         * @return 1番目の値
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/JavadocOptionFileWriterTest.groovy

            tempFile.text == toPlatformLineSeparators("""-key1 'value1'
    -key2 'value2'
    -key3 'value3'
    """)
            when:
            optionsMap.put("locale", new StringJavadocOptionFileOption("locale", "alocale"));
            and:
            javadocOptionFileWriter.write(tempFile)
            then:
            tempFile.text == toPlatformLineSeparators("""-locale 'alocale'
    -key1 'value1'
    -key2 'value2'
    -key3 'value3'
    """)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

            def instantiator = TestUtil.objectInstantiator()
            def value = instantiator.named(Thing, "value1")
            def value1 = instantiator.named(Thing, "value1")
            def value2 = instantiator.named(Thing, "value2")
            def value3 = instantiator.named(Named, "value1")
    
            expect:
            def snapshot = snapshotter.snapshot(value)
            snapshot instanceof ImmutableManagedValueSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/HeadersTest.kt

          headersOf("header1", "valué1")
        }.also { expected ->
          assertThat(expected.message)
            .isEqualTo("Unexpected char 0xe9 at 4 in header1 value: valué1")
        }
      }
    
      @Test fun mapFactoryRejectsUnicodeInHeaderName() {
        assertFailsWith<IllegalArgumentException> {
          mapOf("héader1" to "value1").toHeaders()
        }.also { expected ->
          assertThat(expected.message)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                    expected = ['key1': 'value1', 'key2': 'value2']
                }
                """.stripIndent()
    
            expect:
            succeeds('verify')
    
            where:
            value                                                         | _
            "['key1': 'value1', 'key2': 'value2']"                        | _
            "new LinkedHashMap(['key1': 'value1', 'key2': 'value2'])"     | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/DefaultInternalOptionsTest.groovy

            sysProps["prop2"] = ""
            sysProps["prop3"] = "false"
            sysProps["prop4"] = "not anything much"
    
            expect:
            def value1 = options.getOption(new InternalFlag("prop1", false))
            value1.get()
            value1.explicit
    
            def value2 = options.getOption(new InternalFlag("prop2", false))
            value2.get()
            value2.explicit
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/regexp/example_test.go

    		result = pattern.Expand(result, template, content, submatches)
    	}
    	fmt.Println(string(result))
    	// Output:
    	// option1=value1
    	// option2=value2
    	// option3=value3
    }
    
    func ExampleRegexp_ExpandString() {
    	content := `
    	# comment line
    	option1: value1
    	option2: value2
    
    	# another comment line
    	option3: value3
    `
    
    	// Regex pattern captures "key: value" pair from the content.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/common/equality_test.go

    			RootObject: mustUnstructured(`
                    foo:
                    - key: key1
                      bar: value1
                    - key: key2
                      bar: value2
                `),
    			RootOldObject: mustUnstructured(`
                    foo:
                    - key: key1
                      bar: value1
                    - key: key2
                      bar: value2
                `),
    			KeyPath: []interface{}{"foo"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 21:36:46 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top