Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for default_value (0.24 sec)

  1. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        // We assume that all defaults are generics-safe, even if they aren't,
        // we take the risk.
        @SuppressWarnings("unchecked")
        T defaultValue = (T) defaults.getInstance(type.getRawType());
        if (defaultValue != null) {
          return defaultValue;
        }
        @SuppressWarnings("unchecked") // All arbitrary instances are generics-safe
        T arbitrary = (T) ArbitraryInstances.get(type.getRawType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            when:
            configurationCacheRun()
    
            then:
            outputContains("CI = $defaultValue")
    
            when:
            configurationCacheRun()
    
            then:
            configurationCache.assertStateLoaded()
            noExceptionThrown()
    
            when:
            configurationCacheRunLenient("-DCI=$defaultValue") // use the default value
    
            then:
            configurationCache.assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    								Name:         "custom_tag_env-var",
    								DefaultValue: "custom-tag-env-default",
    							},
    						},
    					},
    					"custom_tag_request_header": {
    						Type: &meshconfig.Tracing_CustomTag_Header{
    							Header: &meshconfig.Tracing_RequestHeader{
    								Name:         "custom_tag_request_header_name",
    								DefaultValue: "custom-defaulted-value-request-header",
    							},
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top