Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 716 for revised (0.67 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/DiffUtils.java

        private void reduceEqualLinesFromHeadAndTail(
                List<String> original, List<String> revised, int contextSize) {
            int head = 0;
            int maxHead = min(original.size(), revised.size());
            while (head < maxHead && original.get(head).equals(revised.get(head))) {
                head++;
            }
            head = max(head - contextSize, 0);
            offsetHead = head;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pkg/registry/flowcontrol/ensurer/strategy.go

    		return zero, false, nil
    	}
    
    	var revised ObjectType
    	if specChanged {
    		revised = objectOps.ReplaceSpec(current, bootstrap)
    	} else {
    		revised = objectOps.DeepCopy(current)
    	}
    	if updateAnnotation {
    		setAutoUpdateAnnotation(revised, autoUpdateSpec)
    	}
    
    	return revised, true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. pilot/test/mock/config.go

    			}
    			if elt == nil || !reflect.DeepEqual(elt.Spec, o.Spec) {
    				t.Errorf("Got %#v, expected %#v", elt, o)
    			}
    
    			log.Infof("Calling Update(%s)", config.Key())
    			revised := Make(namespace, 1)
    			revised.Meta = elt.Meta
    			if _, err := cache.Update(revised); err != nil {
    				t.Error(err)
    			}
    		case model.EventUpdate:
    			if len(elts) != 1 {
    				t.Errorf("Got %#v, expected %d element(s) on Update event", elts, 1)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/StandardRowSortedTable.java

      /*
       * TODO(jlevy): Consider adding headTable, tailTable, and subTable methods,
       * which return a Table view with rows keys in a given range. Create a
       * RowSortedTable subinterface with the revised methods?
       */
    
      StandardRowSortedTable(
          SortedMap<R, Map<C, V>> backingMap, Supplier<? extends Map<C, V>> factory) {
        super(backingMap, factory);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/StandardRowSortedTable.java

      /*
       * TODO(jlevy): Consider adding headTable, tailTable, and subTable methods,
       * which return a Table view with rows keys in a given range. Create a
       * RowSortedTable subinterface with the revised methods?
       */
    
      StandardRowSortedTable(
          SortedMap<R, Map<C, V>> backingMap, Supplier<? extends Map<C, V>> factory) {
        super(backingMap, factory);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  6. test/fixedbugs/bug284.go

    // errorcheck
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test cases for revised conversion rules.
    
    package main
    
    func main() {
    	type NewInt int
    	i0 := 0
    	var i1 int = 1
    	var i2 NewInt = 1
    	i0 = i0
    	i0 = i1
    	i0 = int(i2)
    	i1 = i0
    	i1 = i1
    	i1 = int(i2)
    	i2 = NewInt(i0)
    	i2 = NewInt(i1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:59 UTC 2012
    - 3.5K bytes
    - Viewed (0)
  7. android/guava/pom.xml

                  <placement>X</placement>
                </tag>
                <tag>
                  <name>jls</name>
                  <placement>X</placement>
                </tag>
                <tag>
                  <name>revised</name>
                  <placement>X</placement>
                </tag>
                <tag>
                  <name>spec</name>
                  <placement>X</placement>
                </tag>
              </tags>
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. guava/pom.xml

                  <placement>X</placement>
                </tag>
                <tag>
                  <name>jls</name>
                  <placement>X</placement>
                </tag>
                <tag>
                  <name>revised</name>
                  <placement>X</placement>
                </tag>
                <tag>
                  <name>spec</name>
                  <placement>X</placement>
                </tag>
              </tags>
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/registry/value.go

    		// a DLL search path; this assumes the string value is of the form
    		// @[path]\dllname,-strID but with no path given, e.g. @tzres.dll,-320.
    
    		// This approach works with tzres.dll but may have to be revised
    		// in the future to allow callers to provide custom search paths.
    
    		var s string
    		s, err = ExpandString("%SystemRoot%\\system32\\")
    		if err != nil {
    			return "", err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    	// hitting the cap). If not positive, the duration is not
    	// changed. Used for exponential backoff in combination with
    	// Factor and Cap.
    	Steps int
    	// A limit on revised values of the duration parameter. If a
    	// multiplication by the factor parameter would make the duration
    	// exceed the cap then the duration is set to the cap and the
    	// steps parameter is set to zero.
    	Cap time.Duration
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top