Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,871 for Pull (0.04 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/AssignmentResolver.kt

                            } else {
                                // We should never come across a situation where an assignment already exists that is in a higher generation,
                                // but if we do, just pull the emergency stop handle as this is indicative of a bug rather than a user error.
                                error("Unexpected assignment in higher generation")
                            }
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. .github/workflows/maven.yml

    name: Java CI
    
    on: [push, pull_request, workflow_dispatch]
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    jobs:
      build:
    
        # execute on any push, workflow_dispatch  or pull request from forked repo
        if: >
          github.event_name == 'push' ||
          github.event_name == 'workflow_dispatch' ||
          ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/extension/wasmplugin.go

    			}
    			result = append(result, ec)
    		}
    	}
    	return result
    }
    
    func updatePluginConfig(pluginConfig *wasmextensions.PluginConfig, pullSecrets map[string][]byte) {
    	// Find the pull secret resource name from wasm vm env variables.
    	// The Wasm extension config should already have a `ISTIO_META_WASM_IMAGE_PULL_SECRET` env variable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/gateway_conformance_test.go

    func TestGatewayConformance(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(ctx framework.TestContext) {
    			crd.DeployGatewayAPIOrSkip(ctx)
    
    			// Precreate the GatewayConformance namespaces, and apply the Image Pull Secret to them.
    			if ctx.Settings().Image.PullSecret != "" {
    				for _, ns := range conformanceNamespaces {
    					namespace.Claim(ctx, namespace.Config{
    						Prefix: ns,
    						Inject: false,
    					})
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/maturity/maturity.go

    	// They are added automatically, and should not be alerted on.
    	// Delete these related annotations once they are stable.
    	// Ref: https://github.com/istio/api/pull/2695
    	constants.AmbientWaypointForTrafficTypeLabel: true,
    	constants.AmbientRedirection:                 true,
    }
    
    // Analyze implements analysis.Analyzer
    func (fa *AlphaAnalyzer) Analyze(ctx analysis.Context) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. pkg/test/env/istio.go

    	// nolint: revive, stylecheck
    	TAG Variable = "TAG"
    
    	// VARIANT is the Docker variant to be used for images.
    	// nolint: revive, stylecheck
    	VARIANT Variable = "VARIANT"
    
    	// PULL_POLICY is the image pull policy to use when rendering templates.
    	// nolint: revive, stylecheck
    	PULL_POLICY Variable = "PULL_POLICY"
    
    	// ECHO_IMAGE is the image to use when deploying echo services.
    	// nolint: golint, revive, stylecheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    	Proxy Proxy
    
    	// CertificatesDir specifies where to store or look for all required certificates.
    	CertificatesDir string
    
    	// ImageRepository sets the container registry to pull images from.
    	// If empty, `registry.k8s.io` will be used by default; in case of kubernetes version is a CI build (kubernetes version starts with `ci/`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/values.yaml

        # Default tag for Istio images.
        tag: latest
    
        # Variant of the image to use.
        # Currently supported are: [debug, distroless]
        variant: ""
    
        # Specify image pull policy if default behavior isn't desired.
        # Default behavior: latest images will be Always else IfNotPresent.
        imagePullPolicy: ""
    
        # change cni scope level to control logging out of istio-cni-node DaemonSet
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/options/generic.go

    // AddImageMetaFlags adds the --image-repository flag to the given flagset
    func AddImageMetaFlags(fs *pflag.FlagSet, imageRepository *string) {
    	fs.StringVar(imageRepository, ImageRepository, *imageRepository, "Choose a container registry to pull control plane images from")
    }
    
    // AddFeatureGatesStringFlag adds the --feature-gates flag to the given flagset
    func AddFeatureGatesStringFlag(fs *pflag.FlagSet, featureGatesString *string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/vcs.go

    		statLocal: func(rev, remote string) []string {
    			return []string{"hg", "log", "-l1", "-r", rev, "--template", "{node} {date|hgdate} {tags}"}
    		},
    		parseStat: hgParseStat,
    		fetch:     []string{"hg", "pull", "-f"},
    		latest:    "tip",
    		readFile: func(rev, file, remote string) []string {
    			return []string{"hg", "cat", "-r", rev, file}
    		},
    		readZip: func(rev, subdir, remote, target string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top