Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 431 for rev (0.07 sec)

  1. .pre-commit-config.yaml

    repos:
    -   repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v4.4.0
        hooks:
        -   id: check-added-large-files
        -   id: check-toml
        -   id: check-yaml
            args:
            -   --unsafe
        -   id: end-of-file-fixer
        -   id: trailing-whitespace
    -   repo: https://github.com/charliermarsh/ruff-pre-commit
        rev: v0.2.0
        hooks:
        -   id: ruff
            args:
            - --fix
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 737 bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/query.go

    		return revWithOrigin(nil), err
    	}
    
    	lookup := func(v string) (*modfetch.RevInfo, error) {
    		rev, err := repo.Stat(ctx, v)
    		if rev != nil {
    			// Note that Stat can return a non-nil rev and a non-nil err,
    			// in order to provide origin information to make the error cacheable.
    			origin = mergeOrigin(origin, rev.Origin)
    		}
    		if err != nil {
    			return revWithOrigin(nil), err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/ingressgateway_k8s_settings.golden.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        app: istio-ingressgateway
        install.operator.istio.io/owning-resource: unknown
        istio: ingressgateway
        istio.io/rev: default
        operator.istio.io/component: IngressGateways
        release: istio
      name: istio-ingressgateway
      namespace: istio-system
    spec:
      selector:
        matchLabels:
          app: istio-ingressgateway
          istio: ingressgateway
      strategy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/upgrade/1.8.6-install.yaml.tar

    namespaceSelector: matchExpressions: - key: istio-injection operator: DoesNotExist - key: istio.io/rev operator: In values: - 1-8-6 --- apiVersion: apps/v1 kind: Deployment metadata: labels: app: istiod install.operator.istio.io/owning-resource: unknown istio: pilot istio.io/rev: 1-8-6 operator.istio.io/component: Pilot release: istio name: istiod-1-8-6 namespace: istio-system spec: selector: matchLabels: app: istiod istio.io/rev: 1-8-6 strategy: rollingUpdate: maxSurge: 100% maxUnavailable: 25% template: metadata:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 70K bytes
    - Viewed (0)
  5. samples/ambient-argo/tag-chart/templates/validatingwebhook.yaml

    {{- $tag := .Values.base.tags.default }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    metadata:
      name: istiod-default-validator
      labels:
        app: istiod
        istio: istiod
        istio.io/rev: {{ $tag.revision | default "default" }}
        istio.io/tag: "default"
        # Required to make sure this resource is removed
        # when purging Istio resources
        operator.istio.io/component: Pilot
    webhooks:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pkg/revisions/default_watcher_test.go

    }
    
    func expectRevisionChan(t test.Failer, revisionChan chan string, expected string) {
    	select {
    	case rev := <-revisionChan:
    		if rev != expected {
    			t.Fatalf("expected revision %q to be produced on chan, got %q", expected, rev)
    		}
    	case <-time.After(time.Second * 5):
    		t.Fatalf("timed out waiting for value on default revision chan")
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 23 17:46:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    admissionReviewVersi: ["v1beta1", "v1"] namespaceSelector: matchExpressions: - key: istio.io/rev operator: DoesNotExist - key: istio-injection operator: DoesNotExist objectSelector: matchExpressions: - key: sidecar.istio.io/inject operator: NotIn values: - "false" - key: istio.io/rev operator: In values: - "1-10-0" --- apiVersion: apps/v1 kind: Deployment metadata: name: istiod-1-10-0 namespace: istio-system labels: app: istiod istio.io/rev: 1-10-0 install.operator.istio.io/owning-resource: unknown operator.istio.io/component:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/output-ivy.xml

        <artifact name="project1" type="jar" ext="jar" conf="sourcesElements" m:classifier="sources"/>
      </publications>
      <dependencies>
        <dependency org="junit" name="junit" rev="4.13" conf="runtime-&gt;default"/>
        <dependency org="org.gradle.sample" name="project2" rev="1.0" conf="runtime-&gt;default"/>
      </dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. pkg/adsc/adsc_test.go

    		t.Fatalf("file %s issue: %v", dat, err)
    	}
    	return string(dat)
    }
    
    func TestADSC_handleMCP(t *testing.T) {
    	rev := "test-rev"
    	adsc := &ADSC{
    		VersionInfo: map[string]string{},
    		Store:       memory.Make(collections.Pilot),
    		cfg: &ADSConfig{
    			Config: Config{
    				Revision: rev,
    			},
    		},
    	}
    
    	patchLabel := func(lbls map[string]string, name, value string) map[string]string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/autoscaling_v2.golden.yaml

    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      labels:
        app: istio-ingressgateway
        install.operator.istio.io/owning-resource: unknown
        istio: ingressgateway
        istio.io/rev: default
        operator.istio.io/component: IngressGateways
        release: istio
      name: istio-ingressgateway
      namespace: istio-system
    spec:
      maxReplicas: 5
      metrics:
      - resource:
          name: cpu
          target:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top