Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,355 for doPing (0.29 sec)

  1. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/kotlin/build.gradle.kts

        }
    }
    
    tasks.register("doAuthenticated") {
        dependsOn(login)
        doLast {
            println("Doing authenticated task")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 551 bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	// that go straight to black, and permagrey objects scanned by
    	// markroot during the concurrent scan phase. This is updated
    	// atomically during the cycle. Updates may be batched
    	// arbitrarily, since the value is only read at the end of the
    	// cycle.
    	//
    	// Because of benign races during marking, this number may not
    	// be the exact number of marked bytes, but it should be very
    	// close.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/net/http/export_test.go

    // ExportCloseTransportConnsAbruptly closes all idle connections from
    // tr in an abrupt way, just reaching into the underlying Conns and
    // closing them, without telling the Transport or its persistConns
    // that it's doing so. This is to simulate the server closing connections
    // on the Transport.
    func ExportCloseTransportConnsAbruptly(tr *Transport) {
    	tr.idleMu.Lock()
    	for _, pcs := range tr.idleConn {
    		for _, pc := range pcs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. pkg/test/echo/common/model.go

    	// AcceptAnyALPN, if true, will make the server accept ANY ALPNs. This comes at the expense of
    	// allowing h2 negotiation and being able to detect the negotiated ALPN (as there is none), because
    	// Golang doesn't like us doing this (https://github.com/golang/go/issues/46310).
    	// This is useful when the server is simulating Envoy which does unconventional things with ALPN.
    	AcceptAnyALPN bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. hack/verify-golangci-lint.sh

        golangci_config="${patched_golangci_config}"
      fi
      golangci+=(--config="${golangci_config}")
    fi
    
    cd "${KUBE_ROOT}"
    
    res=0
    run () {
      if [[ "${#targets[@]}" -eq 0 ]]; then
        # Doing it this way is MUCH faster than simply saying "all", and there doesn't
        # seem to be a simpler way to express "this whole workspace".
        kube::util::read-array targets < <(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Build configuration inputs include:
    
    * Init scripts
    * Settings scripts
    * Build scripts
    * System properties used during the configuration phase
    * Gradle properties used during the configuration phase
    * Environment variables used during the configuration phase
    * Configuration files accessed using value suppliers such as providers
    * `buildSrc` inputs, including build configuration inputs and source files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. pkg/cache/ttlCache.go

    		}
    	}
    }
    
    func (c *ttlCache) evictExpired(t time.Time) {
    	// We snapshot a base time here such that the time doesn't need to be
    	// sampled in the Set call as calling time.Now() is relatively expensive.
    	// Doing it here provides enough precision for our needs and tends to have
    	// much lower call frequency.
    	n := t.UnixNano()
    	atomic.StoreInt64(&c.baseTimeNanos, n)
    
    	// This loop is inherently racy. As we iterate through the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package boring provides access to BoringCrypto implementation functions.
    // Check the constant Enabled to find out whether BoringCrypto is available.
    // If BoringCrypto is not available, the functions in this package all panic.
    package boring
    
    // Enabled reports whether BoringCrypto is available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 05:28:51 UTC 2023
    - 826 bytes
    - Viewed (0)
  9. docs/sts/client_grants/sts_element.py

    # -*- coding: utf-8 -*-
    from xml.etree import cElementTree
    from xml.etree.cElementTree import ParseError
    
    if hasattr(cElementTree, 'ParseError'):
        _ETREE_EXCEPTIONS = (ParseError, AttributeError, ValueError, TypeError)
    else:
        _ETREE_EXCEPTIONS = (SyntaxError, AttributeError, ValueError, TypeError)
    
    _STS_NS = {'sts': 'https://sts.amazonaws.com/doc/2011-06-15/'}
    
    
    class STSElement(object):
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginAware.java

         * <p>
         * Use {@link PluginManager#hasPlugin(String)} or similar to query for the application of plugins instead of doing so via the plugin container.
         *
         * @return the plugin container
         * @see #apply
         * @see PluginManager#hasPlugin(String)
         */
        PluginContainer getPlugins();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top