Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for defaultTag (0.43 sec)

  1. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

        // Alternate access APIs also work.
        assertThat(request.tag<String>()).isNull()
        assertThat(request.tag(String::class)).isNull()
      }
    
      @Test
      fun defaultTag() {
        val tag = "1234"
        val request =
          Request.Builder()
            .url("https://square.com")
            .tag(tag as Any)
            .build()
        assertThat(request.tag<Any>()).isSameAs(tag)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/RequestTest.kt

        // Alternate access APIs also work.
        assertThat(request.tag<String>()).isNull()
        assertThat(request.tag(String::class)).isNull()
      }
    
      @Test
      fun defaultTag() {
        val tag = UUID.randomUUID()
        val request =
          Request.Builder()
            .url("https://square.com")
            .tag(tag)
            .build()
        assertThat(request.tag()).isSameAs(tag)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLog.java

    import java.util.function.Supplier;
    
    import org.apache.maven.api.plugin.Log;
    import org.slf4j.Logger;
    
    import static java.util.Objects.requireNonNull;
    
    public class DefaultLog implements Log {
        private final Logger logger;
    
        public DefaultLog(Logger logger) {
            this.logger = requireNonNull(logger);
        }
    
        public void debug(CharSequence content) {
            if (isDebugEnabled()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                            final Map<String, String> defaultMap = new HashMap<>(2);
                            defaultMap.put(Constants.ITEM_LABEL, msg);
                            defaultMap.put(Constants.ITEM_VALUE, "all");
                            langItems.add(defaultMap);
    
                            for (final String lang : supportedLanguages) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

                java.util.Map<String, String> defaultMap = super.prepareGeneratedDefaultMap();
                defaultMap.put(FessEnv.lasta_di_SMART_DEPLOY_MODE, "warm");
                defaultMap.put(FessEnv.DEVELOPMENT_HERE, "true");
                defaultMap.put(FessEnv.ENVIRONMENT_TITLE, "Local Development");
                defaultMap.put(FessEnv.FRAMEWORK_DEBUG, "false");
                defaultMap.put(FessEnv.TIME_ADJUST_TIME_MILLIS, "0");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

                defaultMap.put(FessConfig.search_engine_PASSWORD, "");
                defaultMap.put(FessConfig.search_engine_heartbeat_interval, "10000");
                defaultMap.put(FessConfig.APP_CIPHER_ALGORISM, "aes");
                defaultMap.put(FessConfig.APP_CIPHER_KEY, "___change__me___");
                defaultMap.put(FessConfig.APP_DIGEST_ALGORISM, "sha256");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  7. cni/pkg/plugin/sidecar_redirect.go

    		if err := annotationRegistry[name].validator(val); err != nil {
    			return true, annotationRegistry[name].defaultVal, err
    		}
    		return true, val, nil
    	}
    	// no annotation found so use default value
    	return false, annotationRegistry[name].defaultVal, nil
    }
    
    // NewRedirect returns a new Redirect Object constructed from a list of ports and annotations
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

    import org.apache.maven.execution.MojoExecutionEvent;
    import org.apache.maven.execution.MojoExecutionListener;
    import org.apache.maven.execution.scope.internal.MojoExecutionScope;
    import org.apache.maven.internal.impl.DefaultLog;
    import org.apache.maven.internal.impl.DefaultMojoExecution;
    import org.apache.maven.internal.impl.InternalMavenSession;
    import org.apache.maven.model.Plugin;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.execution.scope.internal.MojoExecutionScope;
    import org.apache.maven.execution.scope.internal.MojoExecutionScopeModule;
    import org.apache.maven.internal.impl.DefaultLog;
    import org.apache.maven.internal.impl.DefaultMojoExecution;
    import org.apache.maven.internal.impl.InternalMavenSession;
    import org.apache.maven.internal.xml.XmlPlexusConfiguration;
    import org.apache.maven.model.Plugin;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  10. architecture/security/istio-agent.md

    The agent also handles rotating certificates near expiration. It does so by triggering a callback from the `SecretManager` to the SDS server
    when a certificate is near expiration (configurable by `SECRET_GRACE_PERIOD_RATIO`, defaulting to half of the expiration). If the SDS server
    is still interested in this certificate (ie, Envoy is still connected and requesting the certificate), the SDS server will send another request
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Aug 22 16:45:50 GMT 2023
    - 7.2K bytes
    - Viewed (0)
Back to top