Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 278 for value_ (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    		// Change annotation keys for Validating's fail open to Mutating's fail open.
    		failOpenAnnotations := map[string]string{}
    		for key, value := range t.ExpectAnnotations {
    			if strings.HasPrefix(key, "failed-open.validating.webhook.admission.k8s.io/") {
    				failOpenAnnotations[key] = value
    			}
    		}
    		for key, value := range failOpenAnnotations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello.yaml.1.values.gen.yaml

    Jingming Guo <******@****.***> 1715374912 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/hello.yaml.10.values.gen.yaml

    Jingming Guo <******@****.***> 1715374912 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. README.md

        "contentIndexName",
        "contentTypeName");
    suggester.indexer().indexFromDocument(reader, 2, 100).getResponse();
    ```
    
    ### Add suggest document from queryLog
    
    ```java
    QueryLog queryLog = new QueryLog("field1:value1", null);
    suggester.indexer().indexFromQueryLog(queryLog);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Jan 19 03:33:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/attributes/TestSuiteName.java

    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    
    /**
     * Attribute to define the test suite name.
     * <p>
     * This attribute is usually found on variants that have the {@link Category} attribute valued at {@link Category#VERIFICATION verification}.
     *
     * @since 7.4
     */
    @Incubating
    public interface TestSuiteName extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 23 18:49:28 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

            producer.delegate = configurationContainer
            def value = producer()
    
            assert value.name == name
    
            def value2 = configurationContainer.getByName(name)
    
            assert value2.name == name
    
            action(value)
            action(value2)
    
            true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/util/ConfigureUtilTest.groovy

            given:
            Bean obj = new Bean()
    
            when:
            ConfigureUtil.configureByMap(obj, prop: 'value')
    
            then:
            obj.prop == "value"
    
            when:
            ConfigureUtil.configureByMap(obj, method: 'value2')
    
            then:
            obj.prop == 'value2'
        }
    
        def canConfigureAndValidateObjectUsingMap() {
            given:
            Bean obj = new Bean()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

    custom.prop = providers.provider { "\${'some value 2'.substring(5)}" }
    assert custom.prop.get() == "value 2"
    
    custom.prop = null
    custom.prop.convention("\${'some value 3'.substring(5)}")
    assert custom.prop.get() == "value 3"
    
    custom.prop.convention(providers.provider { "\${'some value 4'.substring(5)}" })
    assert custom.prop.get() == "value 4"
    """
    
            expect:
            succeeds()
        }
    
        @Requires(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      public void testNewIdentityHashSet() {
        Set<Integer> set = Sets.newIdentityHashSet();
        Integer value1 = new Integer(12357);
        Integer value2 = new Integer(12357);
        assertTrue(set.add(value1));
        assertFalse(set.contains(value2));
        assertTrue(set.contains(value1));
        assertTrue(set.add(value2));
        assertEquals(2, set.size());
      }
    
      @J2ktIncompatible
      @GwtIncompatible // CopyOnWriteArraySet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/manifest/groovy/build.gradle

    tasks.register('barJar', Jar) {
        manifest {
            attributes key1: 'value1'
            from sharedManifest, 'src/config/basemanifest.txt'
            from(['src/config/javabasemanifest.txt', 'src/config/libbasemanifest.txt']) {
                eachEntry { details ->
                    if (details.baseValue != details.mergeValue) {
                        details.value = baseValue
                    }
                    if (details.key == 'foo') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top