Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 627 for pusha (0.11 sec)

  1. .github/workflows/sigbuild-docker-presubmit.yml

            id: date
          -
            name: Build containers, and push to GCR only if the 'build and push to gcr.io for staging' label is applied
            id: docker_build
            uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # v3.2.0
            with:
              push: ${{ contains(github.event.pull_request.labels.*.name, 'build and push to gcr.io for staging') }}
              context: ./tensorflow/tools/tf_sig_build_dockerfiles
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/plugin/authz/authorization.go

    }
    
    func NewBuilder(actionType ActionType, push *model.PushContext, proxy *model.Proxy, useFilterState bool) *Builder {
    	return NewBuilderForService(actionType, push, proxy, useFilterState, nil)
    }
    
    func NewBuilderForService(actionType ActionType, push *model.PushContext, proxy *model.Proxy, useFilterState bool, svc *model.Service) *Builder {
    	tdBundle := trustdomain.NewBundle(push.Mesh.TrustDomain, push.Mesh.TrustDomainAliases)
    	option := builder.Option{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    				ev := stack[top]
    				typ := typeOf(ev.node)
    				push := ev.index
    				parent := top - 1
    
    				events[push].typ = typ            // set type of push
    				stack[parent].typ |= typ | ev.typ // parent's typ contains push and pop's typs.
    				events[push].index = len(events)  // make push refer to pop
    
    				stack = stack[:top]
    				events = append(events, ev)
    			}
    			return true
    		})
    	}
    
    	return events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/html5.js

    e=a(this),f=e.find("input,textarea,select"),g=!1;f.each(function(){var b=[],e=a(this),f=e.attr("required"),h={};switch(f&&b.push("required"),(e.attr("type")||"").toLowerCase()){case"time":b.push("time"),a.formUtils.validators.validate_date||d||(d=!0,a.formUtils.loadModules("date"));break;case"url":b.push("url");break;case"email":b.push("email");break;case"date":b.push("date");break;case"number":b.push("number");var i=e.attr("max"),j=e.attr("min"),k=e.attr("step");j||i?(j||(j="0"),i||(i="9007199254740992"),k||...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  5. samples/wasm_modules/header_injector/Makefile

    .PHONY: docker-push docker-build build clean
    
    VERSION_LIST := 1 2
    HUB ?= gcr.io/istio-testing
    IMAGE_PREFIX ?= /wasm
    IMG := $(HUB)$(IMAGE_PREFIX)/header-injector
    
    all: docker-push
    
    build: plugin.cc plugin.h BUILD WORKSPACE
    	rm -f *.wasm
    	$(foreach VERSION, $(VERSION_LIST), bazel build :plugin-0.0.$(VERSION).wasm && cp bazel-bin/plugin-0.0.$(VERSION).wasm .;)
    
    docker-build: build
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 656 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/caching/configuration/AbstractBuildCache.java

            this.enabled = enabled;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public boolean isPush() {
            return push;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void setPush(boolean push) {
            this.push = push;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 08 17:15:17 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_builder.go

    }
    
    func NewListenerBuilder(node *model.Proxy, push *model.PushContext) *ListenerBuilder {
    	builder := &ListenerBuilder{
    		node: node,
    		push: push,
    	}
    	builder.authnBuilder = authn.NewBuilder(push, node)
    	builder.authzBuilder = authz.NewBuilder(authz.Local, push, node, node.Type == model.Waypoint)
    	builder.authzCustomBuilder = authz.NewBuilder(authz.Custom, push, node, node.Type == model.Waypoint)
    	return builder
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. pilot/pkg/security/authn/factory.go

    // for the given service innstance.
    func NewPolicyApplier(push *model.PushContext, proxy *model.Proxy, svc *model.Service) PolicyApplier {
    	forWorkload := model.PolicyMatcherForProxy(proxy).WithService(svc)
    	return newPolicyApplier(
    		push.AuthnPolicies.GetRootNamespace(),
    		push.AuthnPolicies.GetJwtPoliciesForWorkload(forWorkload),
    		push.AuthnPolicies.GetPeerAuthenticationsForWorkload(forWorkload), push)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. docs/releasing.md

        ```
    
    4. Tag the release and push to GitHub.
    
        ```
        git commit -am "Prepare for release $RELEASE_VERSION."
        git tag -a parent-$RELEASE_VERSION -m "Version $RELEASE_VERSION"
        git push && git push --tags
        ```
    
    5. Wait for [GitHub Actions][github_actions] to start the publish job.
    
    6. Prepare for ongoing development and push to GitHub.
    
        ```
        sed -i "" \
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 26 22:07:16 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads.go

    }
    
    func (conn *Connection) Proxy() *model.Proxy {
    	return conn.proxy
    }
    
    // Event represents a config or registry event that results in a push.
    type Event struct {
    	// pushRequest PushRequest to use for the push.
    	pushRequest *model.PushRequest
    
    	// function to call once a push is finished. This must be called or future changes may be blocked.
    	done func()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top