Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 627 for pusha (0.09 sec)

  1. hack/verify-vendor.sh

    mkdir -p "${_kubetmp}"
    tar --exclude=.git --exclude="./_*" -c . | (cd "${_kubetmp}" && tar xf -)
    
    pushd "${_kubetmp}" > /dev/null 2>&1
      # Destroy deps in the copy of the kube tree
      rm -rf ./vendor ./LICENSES
    
      # Recreate the vendor tree using the nice clean set we just downloaded
      hack/update-vendor.sh
    popd > /dev/null 2>&1
    
    ret=0
    
    pushd "${KUBE_ROOT}" > /dev/null 2>&1
      # Test for diffs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. cluster/gce/gci/mounter/Makefile

    TAG=v2
    REGISTRY=staging-k8s.gcr.io
    IMAGE=gci-mounter
    
    all: container
    
    container:
    	docker build --pull -t ${REGISTRY}/${IMAGE}:${TAG} .
    
    push:
    	docker push ${REGISTRY}/${IMAGE}:${TAG}
    
    upload:
    	./stage-upload.sh ${TAG} ${REGISTRY}/${IMAGE}:${TAG}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 862 bytes
    - Viewed (0)
  3. .github/workflows/trusted_partners.js

          assignees.push('cheshire', 'gcforster', 'reedwm', 'chsigg', 'xla-rotation');
        }
        if (lowercased_title.includes('tf')) {
          assignees.push('rohan100jain', 'bfontain');
        }
      }
      if (lowercased_title.includes('linaro') && domain.includes('linaro.org')) {
        if (lowercased_title.includes('arm_ci')) {
          assignees.push('nitins17', 'penpornk');
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 07 13:52:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/lds.go

    			// Waypoint proxies have a matcher against pod IPs in them. Historically, any LDS change would do a full
    			// push, recomputing push context. Doing that on every IP change doesn't scale, so we need these to remain
    			// incremental pushes.
    			// This allows waypoints only to push LDS on incremental pushes to Address type which would otherwise be skipped.
    			return true
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. cluster/images/etcd/Makefile

    all-push-images: $(addprefix sub-push-image-,$(ALL_OS_ARCH))
    
    # NOTE(claudiub): A non-default builder instance is needed in order to build Windows images.
    all-push: all-push-images push-manifest
    
    push-manifest:
    	docker manifest create --amend $(MANIFEST_IMAGE):$(IMAGE_TAG) $(shell echo $(ALL_OS_ARCH) | sed -e "s~[^ ]*~$(MANIFEST_IMAGE):$(IMAGE_TAG)\-&~g")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. src/syscall/mksyscall_libc.pl

    			if($_32bit eq "big-endian") {
    				push @args, "uintptr($name >> 32)", "uintptr($name)";
    			} else {
    				push @args, "uintptr($name)", "uintptr($name >> 32)";
    			}
    		} elsif($type eq "bool") {
     			$text .= "\tvar _p$n uint32\n";
    			$text .= "\tif $name {\n\t\t_p$n = 1\n\t} else {\n\t\t_p$n = 0\n\t}\n";
    			push @args, "uintptr(_p$n)";
    			$n++;
    		} else {
    			push @args, "uintptr($name)";
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. cluster/images/kubemark/Makefile

    all: gcloudpush
    
    build:
    	docker build --pull -t $(REGISTRY)/kubemark:$(IMAGE_TAG) .
    
    gcloudpush: build
    	docker push $(REGISTRY)/kubemark:$(IMAGE_TAG)
    
    push: build
    	docker push $(REGISTRY)/kubemark:$(IMAGE_TAG)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 27 13:57:53 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/accesslog.go

    		tcpGrpcListenerAccessLog: tcpGrpcAccessLog(true),
    	}
    }
    
    func (b *AccessLogBuilder) setTCPAccessLog(push *model.PushContext, proxy *model.Proxy, tcp *tcp.TcpProxy, class networking.ListenerClass, svc *model.Service) {
    	mesh := push.Mesh
    	cfgs := push.Telemetry.AccessLogging(push, proxy, class, svc)
    
    	if len(cfgs) == 0 {
    		// No Telemetry API configured, fall back to legacy mesh config setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/runtime/lfstack.go

    type lfstack uint64
    
    func (head *lfstack) push(node *lfnode) {
    	node.pushcnt++
    	new := lfstackPack(node, node.pushcnt)
    	if node1 := lfstackUnpack(new); node1 != node {
    		print("runtime: lfstack.push invalid packing: node=", node, " cnt=", hex(node.pushcnt), " packed=", hex(new), " -> node=", node1, "\n")
    		throw("lfstack.push")
    	}
    	for {
    		old := atomic.Load64((*uint64)(head))
    		node.next = old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. cluster/addons/addon-manager/Makefile

    	docker build --pull -t $(IMAGE)-$(ARCH):$(VERSION) $(TEMP_DIR) --build-arg BASEIMAGE=$(BASEIMAGE)
    
    push: build
    	docker push $(IMAGE)-$(ARCH):$(VERSION)
    ifeq ($(ARCH),amd64)
    	# Backward compatibility. TODO: deprecate this image tag
    	docker rmi $(IMAGE):$(VERSION) 2>/dev/null || true
    	docker tag $(IMAGE)-$(ARCH):$(VERSION) $(IMAGE):$(VERSION)
    	docker push $(IMAGE):$(VERSION)
    endif
    
    test:
    	cp ./* $(TEMP_DIR)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top