Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for downgrade (0.15 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller.go

    	// To make sure the eds update run in serial to prevent stale ones can override new ones
    	// when edsUpdate is called concurrently.
    	// If all share one lock, then all the threads can have an obvious performance downgrade.
    	edsQueue queue.Instance
    
    	workloadHandlers []func(*model.WorkloadInstance, model.Event)
    
    	// callback function used to get the networkID according to workload ip and labels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

       Constraint path ':test:unspecified' --> 'org:foo:{strictly 1.0}' because of the following reason: version resolved in configuration ':other' by consistent resolution"""
        }
    
        def "first level dependency can be downgraded only if it's a preferred version"() {
            repository {
                'org:foo:1.0'()
                'org:foo:1.1'()
            }
    
            buildFile << """
                configurations {
                    other
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. cluster/images/etcd/migrate/integration_test.go

    		// warning: v2->v3 ha upgrades not currently supported.
    		{"ha-v3-v3-up", 3, "3.0.17/etcd3", "3.1.12/etcd3", "https", ""},
    
    		// downgrades
    		{"v3-v3-down", 1, "3.1.12/etcd3", "3.0.17/etcd3", "https", ""},
    
    		// warning: ha downgrades not yet supported.
    	}
    
    	for _, m := range migrations {
    		t.Run(m.title, func(t *testing.T) {
    			start := mustParseEtcdVersionPair(m.startVersion)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  4. pkg/proxy/serviceport.go

    	}
    
    	// filter external ips, source ranges and ingress ips
    	// prior to dual stack services, this was considered an error, but with dual stack
    	// services, this is actually expected. Hence we downgraded from reporting by events
    	// to just log lines with high verbosity
    	ipFamilyMap := proxyutil.MapIPsByIPFamily(service.Spec.ExternalIPs)
    	info.externalIPs = ipFamilyMap[ipFamily]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

            "ReadWriteC -> ReadWriteA",
            "ReadWriteB -> ReadWriteC",
            "ReadWriteA -> ReadWriteB");
      }
    
      public void testWriteToReadLockDowngrading() {
        writeLockA.lock(); // writeLockA downgrades to readLockA
        readLockA.lock();
        writeLockA.unlock();
    
        lockB.lock(); // readLockA -> lockB
        readLockA.unlock();
    
        // lockB -> writeLockA should fail
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

            "ReadWriteC -> ReadWriteA",
            "ReadWriteB -> ReadWriteC",
            "ReadWriteA -> ReadWriteB");
      }
    
      public void testWriteToReadLockDowngrading() {
        writeLockA.lock(); // writeLockA downgrades to readLockA
        readLockA.lock();
        writeLockA.unlock();
    
        lockB.lock(); // readLockA -> lockB
        readLockA.unlock();
    
        // lockB -> writeLockA should fail
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. operator/cmd/mesh/install.go

    				revisionWarning = ""
    			}
    			if icpTag < tag {
    				p.Printf("%s Istio is being upgraded from %s to %s.\n"+revisionWarning+check,
    					warnMarker, icpTag, tag)
    			} else {
    				p.Printf("%s Istio is being downgraded from %s to %s.\n"+revisionWarning+check,
    					warnMarker, icpTag, tag)
    			}
    		}
    	}
    	return nil
    }
    
    // GetTagVersion returns istio tag version
    func GetTagVersion(tagInfo string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/compute_test.go

    					},
    					After: ClusterState{
    						KubeVersion:    v1Y5.String(),
    						KubeadmVersion: v1Y5.String(), // Note: The kubeadm version mustn't be "downgraded" here
    						DNSVersion:     constants.CoreDNSVersion,
    						EtcdVersion:    getEtcdVersion(v1Y5),
    					},
    				},
    				{
    					Description: "stable version",
    					Before: ClusterState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. docs/debugging/xl-meta/main.go

    	// Current version being written.
    	xlVersionCurrent [4]byte
    )
    
    const (
    	// Breaking changes.
    	// Newer versions cannot be read by older software.
    	// This will prevent downgrades to incompatible versions.
    	xlVersionMajor = 1
    
    	// Non breaking changes.
    	// Bumping this is informational, but should be done
    	// if any change is made to the data stored, bumping this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. internal/config/config.go

    				if !ok {
    					ckvs.Set(kv.Key, kv.Value)
    				}
    			}
    			if _, ok := cp[subSys]; !ok {
    				rnSubSys, ok := renamedSubsys[subSys]
    				if !ok {
    					// A config subsystem was removed or server was downgraded.
    					continue
    				}
    				// Copy over settings from previous sub-system
    				// to newly renamed sub-system
    				for _, kv := range cp[rnSubSys][Default] {
    					_, ok := c[subSys][tgt].Lookup(kv.Key)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top