Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 234 for HUB (0.03 sec)

  1. .github/hub_scripts/pr_ci.sh

    #
    
    #
    # Simple shell script for launching CI jobs using the @bot-gradle GitHub comment listener.
    # Uses the [hub](https://hub.github.com/) CLI command to issue API requests to GitHub.
    # This script must be executed from the branch associated with the PR to issue the command on.
    #
    
    PR_NUMBER=$(hub pr show -f '%I')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 22 15:25:21 UTC 2021
    - 1K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHubBackedObjectConnection.java

            hub.addConnection(connection);
            hub.noFurtherConnections();
            completion = null;
        }
    
        @Override
        public void requestStop() {
            hub.requestStop();
        }
    
        @Override
        public void stop() {
            // TODO:ADAM - need to cleanup completion too, if not used
            CompositeStoppable.stoppable(hub, connection).stop();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. samples/bookinfo/README.md

    ## General Setup
    
    ```bash
    # This defines the docker hub to use when running integration tests and building docker images
    # eg: HUB="docker.io/istio", HUB="gcr.io/istio-testing"
    export HUB="docker.io/$USER"
    
    # This defines the docker tag to use when running integration tests and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/ConnectionState.java

     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub;
    
    import org.gradle.internal.remote.internal.RemoteConnection;
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage;
    import org.gradle.internal.remote.internal.hub.queue.EndPointQueue;
    
    class ConnectionState {
        private boolean receiveFinished;
        private boolean dispatchFinished;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/InterHubMessageSerializer.java

    import org.gradle.internal.serialize.StatefulSerializer;
    import org.gradle.internal.remote.internal.hub.protocol.ChannelIdentifier;
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream;
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage;
    
    import java.io.IOException;
    import java.util.HashMap;
    import java.util.Map;
    
    public class InterHubMessageSerializer implements StatefulSerializer<InterHubMessage> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. operator/cmd/mesh/operator_test.go

    	odArgs := &operatorDumpArgs{
    		common: operatorCommonArgs{
    			hub:               "foo.io/istio",
    			tag:               "1.2.3",
    			imagePullSecrets:  []string{"imagePullSecret1,imagePullSecret2"},
    			operatorNamespace: "operator-test-namespace",
    			watchedNamespaces: "istio-test-namespace1,istio-test-namespace2",
    		},
    	}
    
    	cmd := "operator dump --hub " + odArgs.common.hub
    	cmd += " --tag " + odArgs.common.tag
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/ConnectionSetTest.groovy

     */
    
    package org.gradle.internal.remote.internal.hub
    
    import org.gradle.internal.remote.internal.RemoteConnection
    import org.gradle.internal.remote.internal.hub.protocol.ChannelIdentifier
    import org.gradle.internal.remote.internal.hub.protocol.ChannelMessage
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream
    import org.gradle.internal.remote.internal.hub.protocol.RejectedMessage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. operator/scripts/update_version.sh

        local DOCKER_TAG="$3"
        # Update version string in profiles.
        sed -i "s|hub: gcr.io/istio-release|hub: ${DOCKER_HUB}|g" "${RELEASE_DIR}"/profiles/*.yaml
        sed -i "s|tag: .*-latest-daily|tag: ${DOCKER_TAG}|g"      "${RELEASE_DIR}"/profiles/*.yaml
        # Update version string in global.yaml.
        sed -i "s|hub: gcr.io/istio-release|hub: ${DOCKER_HUB}|g" "${RELEASE_DIR}"/charts/global.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 14 23:24:30 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  9. tests/integration/security/fuzz/backends/tomcat/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    HUB ?= "gcr.io/istio-testing/fuzz_tomcat"
    TAG ?= "0.1"
    
    push: Dockerfile
    	docker build . -t $(HUB):$(TAG)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 23 20:55:02 UTC 2021
    - 705 bytes
    - Viewed (0)
  10. tests/integration/security/fuzz/fuzzers/dotdotpwn/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    HUB ?= "gcr.io/istio-testing/dotdotpwn"
    TAG ?= "0.1"
    
    push: Dockerfile
    	docker build . -t $(HUB):$(TAG)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 703 bytes
    - Viewed (0)
Back to top