Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 605 for incoming2 (0.15 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

        /**
         * Adds a handler for messages on the given channel. The handler may implement any of the following:
         *
         * <ul>
         *
         * <li>{@link Dispatch} to handle incoming messages received from any connections attached to this hub. Each incoming message is passed to exactly one handler associated to the given channel.
         * </li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. SECURITY_CONTACTS

    # Defined below are the security contacts for this repo.
    #
    # They are the contact point for the Security Response Committee (SRC) to reach out
    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 14:45:43 UTC 2023
    - 665 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

        }
      }
      return success();
    }
    
    // Returns true iff `op` has a direct control dependency from (`incoming` ==
    // true) or to (`incoming` == false) any op in `cluster_ops` or
    // `cluster_dependent_ops`.
    Operation* getOpClusterControlDependency(
        Operation* op, bool incoming, const OpSetVector& cluster_ops,
        const OpSetVector& cluster_dependent_ops,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  4. pkg/registry/core/namespace/strategy_test.go

    	}
    	errs = Strategy.ValidateUpdate(ctx, invalidNamespace, namespace)
    	if len(errs) == 0 {
    		t.Errorf("Expected a validation error")
    	}
    	if invalidNamespace.ResourceVersion != "4" {
    		t.Errorf("Incoming resource version on update should not be mutated")
    	}
    }
    
    func TestNamespaceDefaultLabelCanonicalize(t *testing.T) {
    	namespace := &api.Namespace{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 08:51:17 UTC 2021
    - 6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/bestPractices/logicDuringConfiguration-dont/groovy/build.gradle

    plugins {
        id("java-library")
    }
    
    repositories {
        mavenCentral()
    }
    
    configurations.all {
        incoming.beforeResolve {
            throw new IllegalStateException("You shouldn't resolve configurations during configuration phase!")
        }
    }
    
    // tag::config-logic[]
    dependencies {
        implementation 'log4j:log4j:1.2.17'
    }
    
    tasks.register('printArtifactNames') {
        // always executed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 538 bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildArtifactTransformIntegrationTest.groovy

                        to.attribute(Attribute.of("artifactType", String), "xform")
                    }
                }
    
                task resolve {
                    def artifacts = configurations.compileClasspath.incoming.artifactView {
                        attributes.attribute(Attribute.of("artifactType", String), "xform")
                    }.artifacts
                    inputs.files artifacts.artifactFiles
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. releasenotes/notes/pilot-autoscale.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
        **Improved** the variables `PILOT_MAX_REQUESTS_PER_SECOND` (which rate limits the incoming requests, previously defaulted to 25.0)
        and `PILOT_PUSH_THROTTLE` (which limits the number of concurrent responses, previously defaulted to 100) to automatically scale with the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 08:42:13 UTC 2023
    - 428 bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    const (
    	NoConflict = iota
    	// HTTPOverTCP represents incoming HTTP existing TCP
    	HTTPOverTCP
    	// TCPOverHTTP represents incoming TCP existing HTTP
    	TCPOverHTTP
    	// TCPOverTCP represents incoming TCP existing TCP
    	TCPOverTCP
    	// TCPOverAuto represents incoming TCP existing AUTO
    	TCPOverAuto
    	// AutoOverHTTP represents incoming AUTO existing HTTP
    	AutoOverHTTP
    	// AutoOverTCP represents incoming AUTO existing TCP
    	AutoOverTCP
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. .github/workflows/contributor-pr.yml

            with:
              distribution: temurin
              java-version: 11
          - uses: actions/download-artifact@v4
            with:
              name: build-receipt.properties
              path: incoming-distributions/build-receipt.properties
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
            with:
              cache-read-only: ${{ github.ref != 'refs/heads/master' }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    		"Root certificate bundle to use to verify client certificates on incoming requests "+
    		"before trusting usernames in headers specified by --requestheader-username-headers. "+
    		"WARNING: generally do not depend on authorization being already done for incoming requests.")
    
    	fs.StringSliceVar(&s.AllowedNames, "requestheader-allowed-names", s.AllowedNames, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
Back to top