Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,046 for loser (0.05 sec)

  1. src/net/packetconn_test.go

    			skipOrFatalFn()
    			continue
    		}
    
    		c1, err := ListenPacket(tt.net, tt.addr1)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer closer(c1, tt.net, tt.addr1, tt.addr2)
    		c1.LocalAddr()
    
    		c2, err := ListenPacket(tt.net, tt.addr2)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer closer(c2, tt.net, tt.addr1, tt.addr2)
    		c2.LocalAddr()
    		rb2 := make([]byte, 128)
    
    		if _, err := c1.WriteTo(wb, c2.LocalAddr()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    // and a bool indicating whether the bound is the item's lower bound.
    func (rap *relativeAllocProblem) decode(idx int) (float64, int, bool) {
    	itemIdx, lower := rap.getItemIndex(idx)
    	if lower {
    		return rap.items[itemIdx].relativeLowerBound, itemIdx, lower
    	}
    	return rap.items[itemIdx].relativeUpperBound, itemIdx, lower
    }
    
    func (rap *relativeAllocProblem) getProportion(idx int) float64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  3. src/net/http/internal/ascii/print.go

    func EqualFold(s, t string) bool {
    	if len(s) != len(t) {
    		return false
    	}
    	for i := 0; i < len(s); i++ {
    		if lower(s[i]) != lower(t[i]) {
    			return false
    		}
    	}
    	return true
    }
    
    // lower returns the ASCII lowercase version of b.
    func lower(b byte) byte {
    	if 'A' <= b && b <= 'Z' {
    		return b + ('a' - 'A')
    	}
    	return b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java

      }
    
      @CollectionSize.Require(SEVERAL)
      public void testLowerHole() {
        resetWithHole();
        assertEquals(null, navigableSet.lower(a));
        assertEquals(a, navigableSet.lower(b));
        assertEquals(a, navigableSet.lower(c));
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testFloorHole() {
        resetWithHole();
        assertEquals(a, navigableSet.floor(a));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/map.go

    func makeTitle(t language.Tag, o options) transform.SpanningTransformer {
    	_, i, _ := matcher.Match(t)
    	x := &titleInfos[i]
    	lower := x.lower
    	if o.noLower {
    		lower = (*context).copy
    	} else if !o.ignoreFinalSigma {
    		lower = finalSigma(lower)
    	}
    	return &titleCaser{
    		title:     x.title,
    		lower:     lower,
    		titleSpan: x.titleSpan,
    		rewrite:   x.rewrite,
    	}
    }
    
    func noSpan(c *context) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * <pre>{@code
     * FluentFuture<UserName> userName =
     *     ClosingFuture.submit(
     *             closer -> closer.eventuallyClose(database.newTransaction(), closingExecutor),
     *             executor)
     *         .transformAsync((closer, transaction) -> transaction.queryClosingFuture("..."), executor)
     *         .transform((closer, result) -> result.get("userName"), directExecutor())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Range.java

       * than {@code upper}.
       *
       * @throws IllegalArgumentException if {@code lower} is greater than <i>or equal to</i> {@code
       *     upper}
       * @throws ClassCastException if {@code lower} and {@code upper} are not mutually comparable
       * @since 14.0
       */
      public static <C extends Comparable<?>> Range<C> open(C lower, C upper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            when:
            succeeds("compileJava")
    
            then:
            bytecodeVersion() == TestJavaClassUtil.getClassVersion(lower.javaVersion)
        }
    
        def 'honors task level compatibility when using toolchain'() {
            given:
            def lower = getLowerJvm()
            def lowerVersion = lower.javaVersion.getMajorVersion()
    
            and:
            goodCode()
            buildFile << """
                java.toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    //
    //	byte 1:
    //	  7..6  unused
    //	  5..3  length of 1st mapping of case type
    //	  2..0  length of 2nd mapping of case type
    //
    //	  case     1st    2nd
    //	  lower -> upper, title
    //	  upper -> lower, title
    //	  title -> lower, upper
    //
    // Lengths with the value 0x7 indicate no value and implies no change.
    // A length of 0 indicates a mapping to zero-length string.
    //
    // Body bytes:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

      let summary = "Lower tf.ReadVariable and tf.AssignVariable";
    
      let description = [{
        This pass will lower AssignVariableOp and ReadVariableOp to their ml_program
        equivalents, for those resources which come from a VarHandle op, but also
        for those which come from a "bound input" parameter. For the latter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top