Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for rev (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		if err != nil {
    			return nil, storage.NewInternalError(err.Error())
    		}
    		state.rev = getResp.Kvs[0].ModRevision
    		state.meta.ResourceVersion = uint64(state.rev)
    		state.data = data
    		state.stale = stale
    		if err := decode(s.codec, s.versioner, state.data, state.obj, state.rev); err != nil {
    			recordDecodeError(s.groupResourceString, key)
    			return nil, err
    		}
    	}
    	return state, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	errChan           chan error
    }
    
    // Watch watches on a key and returns a watch.Interface that transfers relevant notifications.
    // If rev is zero, it will return the existing object(s) and then start watching from
    // the maximum revision+1 from returned objects.
    // If rev is non-zero, it will watch events happened after given revision.
    // If opts.Recursive is false, it watches on given key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/internal/modfetch/proxy.go

    	}
    	if info.Version != rev && rev == module.CanonicalVersion(rev) && module.Check(p.path, rev) == nil {
    		// If we request a correct, appropriate version for the module path, the
    		// proxy must return either exactly that version or an error — not some
    		// arbitrary other version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. istioctl/pkg/tag/tag.go

    referring to control plane revisions for sidecar injection.
    
    With revision tags, rather than relabeling a namespace from "istio.io/rev=revision-a" to "istio.io/rev=revision-b" to
    change which control plane revision handles injection, it's possible to create a revision tag "prod" and label our
    namespace "istio.io/rev=prod". The "prod" revision tag could point to "1-7-6" initially and then be changed to point to "1-8-1"
    at some later point.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/configmap.go

    		ic.values = myic
    		ic.mu.Unlock()
    	}
    
    	return myic, nil
    }
    
    func (ic *injectConfig) configMapName() string {
    	cmName := "istio-sidecar-injector"
    	if rev := ic.revisions.Default(); rev != "default" && rev != "" {
    		cmName += "-" + rev
    	}
    	return cmName
    }
    
    func (mc *meshConfig) MeshConfig() (*meshconfig.MeshConfig, error) {
    	mc.mu.Lock()
    	mymc := mc.meshConfig
    	mc.mu.Unlock()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/uninstall.go

    				" and will not function correctly.\n"
    		} else if rev != "" && err != nil {
    			needConfirmation = true
    			message += fmt.Sprintf("Unable to find any proxies pointing to the %s control plane. "+
    				"This may be because the control plane cannot be connected or there is no %s control plane.\n", rev, rev)
    		}
    		if gwList != "" {
    			needConfirmation = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. istioctl/pkg/workload/workload_test.go

    				"--internalIP", testCases[dir.Name()]["internalIP"],
    				"--ingressIP", testCases[dir.Name()]["ingressIP"],
    				"--clusterID", constants.DefaultClusterName,
    				"--revision", "rev-1",
    				"-o", testdir,
    			}
    			if _, err := runTestCmd(t, createClientFunc, "rev-1", cmdWithClusterID); err != nil {
    				t.Fatal(err)
    			}
    
    			cmdNoClusterID := []string{
    				"entry", "configure",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top