Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 370 for IsSame (0.08 sec)

  1. pkg/registry/core/service/portallocator/allocator_test.go

    		}
    		found.Insert(port)
    	}
    
    	em = testMetrics{
    		free:      2768 - 2,
    		used:      2,
    		allocated: 2,
    		errors:    0,
    	}
    	expectMetrics(t, em)
    
    	// try to allocate the same ports
    	for s := range found {
    		if !a.Has(s) {
    			t.Fatalf("missing: %d", s)
    		}
    		if err := a.Allocate(s); err != ErrAllocated {
    			t.Fatal(err)
    		}
    	}
    	em = testMetrics{
    		free:      2768 - 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    	lastPos := int32(0)
    	for _, j := range sa[len(sa)-numLMS:] {
    		// Is the LMS-substring at index j new, or is it the same as the last one we saw?
    		n := sa[j/2]
    		if n != lastLen {
    			goto New
    		}
    		if uint32(n) >= uint32(len(text)) {
    			// “Length” is really encoded full text, and they match.
    			goto Same
    		}
    		{
    			// Compare actual texts.
    			n := int(n)
    			this := text[j:][:n]
    			last := text[lastPos:][:n]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Range.java

      /**
       * Returns {@code true} if {@code object} is a range having the same endpoints and bound types as
       * this range. Note that discrete ranges such as {@code (1..4)} and {@code [2..3]} are <b>not</b>
       * equal to one another, despite the fact that they each contain precisely the same set of values.
       * Similarly, empty ranges are not equal unless they have exactly the same representation, so
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/Types.java

       * that an abstract method is unimplemented. So instead we use a dynamic proxy to get an
       * implementation. If the method being called on the {@code TypeVariable} instance has the same
       * name as one of the public methods of {@link TypeVariableImpl}, the proxy calls the same method
       * on its instance of {@code TypeVariableImpl}. Otherwise it throws {@link
       * UnsupportedOperationException}; this should only apply to {@code getAnnotatedBounds()}. This
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/index/suffixarray/suffixarray_test.go

    	}
    
    	// if n >= 0 the number of results is limited --- unless n >= all results,
    	// we may obtain different positions from the Index and from find (because
    	// Index may not find the results in the same order as find) => in general
    	// we cannot simply check that the res and exp lists are equal
    
    	// check that each result is in fact a correct match and there are no duplicates
    	slices.Sort(res)
    	for i, r := range res {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    message IngressClassSpec {
      // controller refers to the name of the controller that should handle this
      // class. This allows for different "flavors" that are controlled by the
      // same controller. For example, you may have different parameters for the
      // same implementing controller. This should be specified as a
      // domain-prefixed path no more than 250 characters in length, e.g.
      // "acme.io/ingress-controller". This field is immutable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

                val expectedFile = getTestDataFileSiblingPath().toFile()
                if (!testServices.assertions.doesEqualToFile(expectedFile, actual)) {
                    error("Restored content is not the same. Actual:\n$actual")
                }
            } catch (e: Throwable) {
                if (directiveToIgnore == null) throw e
                failed = true
            }
    
            if (!failed) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/TreeBasedTable.java

       * keys.
       *
       * <p>The method signature specifies {@code R extends Comparable} with a raw {@link Comparable},
       * instead of {@code R extends Comparable<? super R>}, and the same for {@code C}. That's
       * necessary to support classes defined without generics.
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlayTest.kt

                    * property(a, literal(33)) -> ShadowedProperty(underlayProperty=property(a, literal(3)),...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    			// conversely, on Windows, err may be nil and
    			// the file not deleted if anyone has it open.
    			u.logger.Printf("%v failed to remove %s", err, f)
    		}
    	}
    }
    
    // createReport for all the count files for the same date.
    // returns the absolute path name of the file containing the report
    func (u *uploader) createReport(start time.Time, expiryDate string, countFiles []string, lastWeek string) (string, error) {
    	uploadOK := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top