Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 816 for Initial (0.93 sec)

  1. samples/bookinfo/src/productpage/templates/index.html

    {% block metas %}
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    {% endblock %}
    
    {% block styles %}
    <style>
        table {
            color: #333;
            background: white;
            border: 1px solid grey;
            font-size: 12pt;
            border-collapse: collapse;
            width: 100%;
        }
    
        table thead th,
        table tfoot th {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/authorizer/reload.go

    		switch configuredAuthorizer.Type {
    		case authzconfig.AuthorizerType(modes.ModeNode):
    			if r.nodeAuthorizer == nil {
    				return nil, nil, fmt.Errorf("authorizer type Node is not allowed if it was not enabled at initial server startup")
    			}
    			authorizers = append(authorizers, authorizationmetrics.InstrumentedAuthorizer(string(configuredAuthorizer.Type), configuredAuthorizer.Name, r.nodeAuthorizer))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/BootstrapDns.kt

     */
    package okhttp3.dnsoverhttps
    
    import java.net.InetAddress
    import java.net.UnknownHostException
    import okhttp3.Dns
    
    /**
     * Internal Bootstrap DNS implementation for handling initial connection to DNS over HTTPS server.
     *
     * Returns hardcoded results for the known host.
     */
    internal class BootstrapDns(
      private val dnsHostname: String,
      private val dnsServers: List<InetAddress>,
    ) : Dns {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ManualEvictionInMemoryCache.java

    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    import java.util.function.Function;
    
    public class ManualEvictionInMemoryCache<K, V> implements Cache<K, V> {
        // Use 256 as initial size to start out with enough concurrency.
        private final ConcurrentMap<K, V> map = new ConcurrentHashMap<>(256);
    
        @Override
        public V get(K key, Function<? super K, ? extends V> factory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

            buildB.buildFile << """
                allprojects {
                    apply plugin: 'java'
                    group = 'org.test'
                    version = '1.0'
                }
            """
            repo.commit('initial')
            buildFile << """
                apply plugin: 'base'
    
                repositories { maven { url "${mavenRepo.uri}" } }
    
                configurations {
                    conf
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/LockStateSerializer.java

         * single byte that describes the version.
         * an implementation protocol should increment the value when protocol changes in an incompatible way
         */
        byte getVersion();
    
        /**
         * Returns the initial state for a lock file with this format.
         */
        LockState createInitialState();
    
        /**
         * writes the state data
         */
        void write(DataOutput lockFileAccess, LockState lockState) throws IOException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/net/http/client.go

    //
    // When following redirects, the Client will forward all headers set on the
    // initial [Request] except:
    //
    //   - when forwarding sensitive headers like "Authorization",
    //     "WWW-Authenticate", and "Cookie" to untrusted targets.
    //     These headers will be ignored when following a redirect to a domain
    //     that is not a subdomain match or exact match of the initial domain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    FCA0          ; mapped                 ; 0628 0647     # 1.1  ARABIC LIGATURE BEH WITH HEH INITIAL FORM
    FCA1          ; mapped                 ; 062A 062C     # 1.1  ARABIC LIGATURE TEH WITH JEEM INITIAL FORM
    FCA2          ; mapped                 ; 062A 062D     # 1.1  ARABIC LIGATURE TEH WITH HAH INITIAL FORM
    FCA3          ; mapped                 ; 062A 062E     # 1.1  ARABIC LIGATURE TEH WITH KHAH INITIAL FORM
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  9. src/log/slog/internal/buffer/buffer.go

    // Package buffer provides a pool-allocated byte buffer.
    package buffer
    
    import "sync"
    
    // buffer adapted from go/src/fmt/print.go
    type Buffer []byte
    
    // Having an initial size gives a dramatic speedup.
    var bufPool = sync.Pool{
    	New: func() any {
    		b := make([]byte, 0, 1024)
    		return (*Buffer)(&b)
    	},
    }
    
    func New() *Buffer {
    	return bufPool.Get().(*Buffer)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractLockingIntegrationTest.groovy

            then:
            lockfileFixture.verifyLockfile('lockedConf', ['org:foo:1.0', 'org:bar:1.0'])
        }
    
        def 'updates part of the lockfile (initial unique: #unique)'() {
            mavenRepo.module('org', 'foo', '1.0').publish()
            mavenRepo.module('org', 'foo', '1.1').publish()
            mavenRepo.module('org', 'bar', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top