Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 364 for Settings (0.16 sec)

  1. doc/godebug.md

    There is no plan to remove these settings.
    
    ### Go 1.6
    
    Go 1.6 introduced transparent support for HTTP/2,
    controlled by the [`http2client`, `http2server`, and `http2debug` settings](/pkg/net/http/#hdr-HTTP_2).
    There is no plan to remove these settings.
    
    ### Go 1.5
    
    Go 1.5 introduced a pure Go DNS resolver,
    controlled by the [`netdns` setting](/pkg/net/#hdr-Name_Resolution).
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  2. operator/README.md

            - key: CriticalAddonsOnly
              operator: Exists
    ```
    
    The K8s settings are defined in detail in the
    [operator API](https://github.com/istio/api/blob/master/operator/v1alpha1/operator.proto).
    The settings are the same for all components, so a user can configure pilot K8s settings in exactly the same, consistent
    way as galley settings. Supported K8s settings currently include:
    
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

    import org.apache.maven.api.settings.Activation;
    import org.apache.maven.api.settings.ActivationOS;
    import org.apache.maven.api.settings.ActivationProperty;
    import org.apache.maven.api.settings.Profile;
    import org.apache.maven.api.settings.Repository;
    import org.apache.maven.api.settings.RepositoryPolicy;
    import org.apache.maven.api.settings.Settings;
    import org.apache.maven.settings.v4.SettingsMerger;
    
    /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

      }
    
      /** Merges [settings] into this peer's settings and sends them to the remote peer. */
      @Throws(IOException::class)
      fun setSettings(settings: Settings) {
        writer.withLock {
          this.withLock {
            if (isShutdown) {
              throw ConnectionShutdownException()
            }
            okHttpSettings.merge(settings)
          }
          writer.settings(settings)
        }
      }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

    import org.apache.maven.settings.Mirror;
    import org.apache.maven.settings.Server;
    import org.apache.maven.settings.building.SettingsProblem;
    import org.apache.maven.settings.crypto.DefaultSettingsDecryptionRequest;
    import org.apache.maven.settings.crypto.SettingsDecrypter;
    import org.apache.maven.settings.crypto.SettingsDecryptionRequest;
    import org.apache.maven.settings.crypto.SettingsDecryptionResult;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

        public static class ApiConfigsResponse<T> extends ApiResponse {
            protected List<T> settings;
            protected long total = 0;
    
            public ApiConfigsResponse<T> settings(final List<T> settings) {
                this.settings = settings;
                this.total = settings.size();
                return this;
            }
    
            public ApiConfigsResponse<T> total(final long total) {
                this.total = total;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  7. .github/actions/notify-translations/app/main.py

    
    if __name__ == "__main__":
        settings = Settings()
        if settings.input_debug:
            logging.basicConfig(level=logging.DEBUG)
        else:
            logging.basicConfig(level=logging.INFO)
        logging.debug(f"Using config: {settings.json()}")
        g = Github(settings.input_token.get_secret_value())
        repo = g.get_repo(settings.github_repository)
        if not settings.github_event_path.is_file():
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Sep 27 23:01:46 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

        }
    
        /**
         * @param settings could be null
         * @return a new instance of settings or null if settings was null.
         */
        public static org.apache.maven.settings.Settings copySettings(org.apache.maven.settings.Settings settings) {
            if (settings == null) {
                return null;
            }
            return new org.apache.maven.settings.Settings(settings.getDelegate());
        }
    
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

    import org.apache.maven.api.services.xml.XmlReaderRequest;
    import org.apache.maven.api.settings.Profile;
    import org.apache.maven.api.settings.Repository;
    import org.apache.maven.api.settings.RepositoryPolicy;
    import org.apache.maven.api.settings.Server;
    import org.apache.maven.api.settings.Settings;
    import org.apache.maven.settings.v4.SettingsMerger;
    import org.apache.maven.settings.v4.SettingsTransformer;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 12K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

    import org.apache.maven.api.services.BuilderProblem;
    import org.apache.maven.api.settings.Mirror;
    import org.apache.maven.api.settings.Profile;
    import org.apache.maven.api.settings.Proxy;
    import org.apache.maven.api.settings.Repository;
    import org.apache.maven.api.settings.Server;
    import org.apache.maven.api.settings.Settings;
    
    /**
     */
    public class DefaultSettingsValidator {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
Back to top