Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 647 for incoming2 (0.19 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/WaitPrecondition.java

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http;
    
    /**
     * Some action that must be met before it is legal to wait for an incoming request.
     */
    interface WaitPrecondition {
        /**
         * Must be called under lock.
         */
        void assertCanWait() throws IllegalStateException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 892 bytes
    - Viewed (0)
  2. cmd/service.go

    	}
    
    	// Invokes the execve system call.
    	// Re-uses the same pid. This preserves the pid over multiple server-respawns.
    	return syscall.Exec(argv0, os.Args, os.Environ())
    }
    
    // freezeServices will freeze all incoming S3 API calls.
    // For each call, unfreezeServices must be called once.
    func freezeServices() {
    	// Use atomics for globalServiceFreeze, so we can read without locking.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        public List<ComponentState> getDependents() {
            List<ComponentState> incoming = Lists.newArrayListWithCapacity(nodes.size());
            for (NodeState node : nodes) {
                for (EdgeState dependencyEdge : node.getIncomingEdges()) {
                    incoming.add(dependencyEdge.getFrom().getComponent());
                }
            }
            return incoming;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. build-logic/root-build/src/main/kotlin/gradlebuild.warmup-ec2.gradle.kts

                    configurations.forEach { c ->
                        if (c.isCanBeResolved) {
                            println("Downloading dependencies for '$path' - ${c.name}")
                            val result = c.incoming.artifactView { lenient(true) }.artifacts
                            result.failures.forEach {
                                println("- Ignoring Error: ${it.message}")
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 09:39:18 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. releasenotes/notes/disable-host-header-fallback.yaml

      - title: Host header fallback disabled by default for Prometheus metrics for *all* inbound traffic.
        content: |
          Host header fallback for determining values for Prometheus `destination_service` labels has been disabled for all incoming traffic.
          Previously, this was disabled *only* for traffic arriving at Gateways. If you are relying on host header fallback behavior to properly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 22 19:40:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/JvmDerivedVariantsIntegrationTest.groovy

            file("consumer/build.gradle") << """
    dependencies {
        implementation 'com.example:test:1.0'
    }
    
    task resolve {
        def artifacts = configurations.runtimeClasspath.incoming.artifactView {
            withVariantReselection()
            attributes {
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 19:46:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/StreamFailureHandler.java

     */
    public interface StreamFailureHandler {
        /**
         * Called when notification of a streaming failure is received on an incoming channel.
         */
        void handleStreamFailure(Throwable t);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 984 bytes
    - Viewed (0)
  8. cmd/generic-handlers_contrib.go

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package cmd
    
    import (
    	"net/http"
    	"strings"
    )
    
    // guessIsLoginSTSReq - returns true if incoming request is Login STS user
    func guessIsLoginSTSReq(req *http.Request) bool {
    	if req == nil {
    		return false
    	}
    	return strings.HasPrefix(req.URL.Path, loginPathPrefix) ||
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 30 15:50:39 UTC 2021
    - 995 bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/data_flow_grad.cc

                                std::vector<Output>* grad_outputs) {
      // DynamicPartition only moves input values into various positions
      // in the output, so the gradient operation only has to map incoming
      // gradients into their input source locations.
      // running example:
      // data = [10, 20, 30, 40, 50]
      // partitions = [0, 0, 1, 1, 0]
      // num_partitions = 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 13:40:35 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  10. src/net/mptcpsock_linux_test.go

    	mptcp, err := tcp.MultipathTCP()
    	if err != nil {
    		ch <- err
    		return
    	}
    
    	if !mptcp {
    		ch <- errors.New("incoming connection is not with MPTCP")
    		return
    	}
    
    	// Also check the method for the older kernels if not tested before
    	if hasSOLMPTCP && !isUsingMPTCPProto(tcp.fd) {
    		ch <- errors.New("incoming connection is not an MPTCP proto")
    		return
    	}
    }
    
    func dialerMPTCP(t *testing.T, addr string, envVar bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 00:36:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top