Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 307 for value_ (0.28 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                    ClosingFuture.from(immediateFuture("value2")),
                    ClosingFuture.from(immediateFuture("value3")),
                    ClosingFuture.from(immediateFuture("value4")),
                    ClosingFuture.from(immediateFuture("value5")))
                .call(
                    new ClosingFunction5<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                    ClosingFuture.from(immediateFuture("value2")),
                    ClosingFuture.from(immediateFuture("value3")),
                    ClosingFuture.from(immediateFuture("value4")),
                    ClosingFuture.from(immediateFuture("value5")))
                .call(
                    new ClosingFunction5<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/Tuple3.java

         *            2番目の値
         * @param value3
         *            3番目の値
         */
        public Tuple3(final T1 value1, final T2 value2, final T3 value3) {
            this.value1 = value1;
            this.value2 = value2;
            this.value3 = value3;
        }
    
        /**
         * 1番目の値を返します。
         *
         * @return 1番目の値
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
         * 1番目の値を設定します。
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/helper/helpers_test.go

    							Values:   []string{"test-value2"},
    						},
    						{
    							Key:      "key3",
    							Operator: v1.NodeSelectorOpIn,
    							Values:   []string{"test-value3"},
    						},
    					},
    				},
    				{
    					MatchExpressions: []v1.NodeSelectorRequirement{
    						{
    							Key:      "key1",
    							Operator: v1.NodeSelectorOpIn,
    							Values:   []string{"test-value11, test-value12"},
    						},
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/suggest/settings/BadWordSettingsTest.java

            String value1 = "a";
            String value2 = "b";
            String value3 = "c";
            settings.badword().add(value1);
            settings.badword().add(value2);
            settings.badword().add(value3);
            assertEquals(3, settings.badword().get(false).length);
            assertEquals(value1, settings.badword().get(false)[0]);
            assertEquals(value2, settings.badword().get(false)[1]);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/test-full.xml

    	<info organisation="myorg"
    	       module="mymodule"
    	       revision="myrev"
    	       status="status"
               branch="branch"
    	       publication="20041101110000"
    	       e:attr1="value1">
    
    		<license name="MyLicense" url="http://www.my.org/mymodule/mylicense.html"/>
    		<ivyauthor name="jayasoft" url="http://www.jayasoft.org/"/>
    		<ivyauthor name="myorg" url="http://www.myorg.org/"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/settings/ArraySettingsTest.java

            String key = "key";
            String value1 = "a";
            String value2 = "b";
            String value3 = "c";
            settings.array().add(key, value1);
            settings.array().add(key, value2);
            settings.array().add(key, value3);
            assertEquals(3, settings.array().get(key).length);
            assertEquals(value1, settings.array().get(key)[0]);
            assertEquals(value2, settings.array().get(key)[1]);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

            def value = instantiator.named(Thing, "value")
            def value1 = instantiator.named(Thing, "value")
            def value2 = instantiator.named(Thing, "value2")
            def value3 = instantiator.named(Named, "value2")
    
            expect:
            def snapshot = snapshotter.snapshot(value)
            areTheSame(snapshot, value1)
            areNotTheSame(snapshot, value2)
            areNotTheSame(snapshot, value3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  9. tests/preload_suits_test.go

    	want[0] = Level3{
    		Level2: Level2{
    			Level1s: []Level1{
    				{Value: "value1"},
    				{Value: "value2"},
    			},
    		},
    		Level2_1: Level2_1{
    			Level1s: []Level1{
    				{
    					Value:   "value1-1",
    					Level0s: []Level0{{Value: "Level0-1"}},
    				},
    				{
    					Value:   "value2-2",
    					Level0s: []Level0{{Value: "Level0-2"}},
    				},
    			},
    		},
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Mar 18 05:38:46 UTC 2022
    - 30.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/JavadocOptionFileWriterTest.groovy

    -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)
Back to top