Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for leftmost (0.13 sec)

  1. guava/src/com/google/common/net/InternetDomainName.java

              registrySuffixIndexLocal = findSuffixOfType(Optional.of(PublicSuffixType.REGISTRY));
        }
        return registrySuffixIndexLocal;
      }
    
      /**
       * Returns the index of the leftmost part of the suffix, or -1 if not found. Note that the value
       * defined as a suffix may not produce {@code true} results from {@link #isPublicSuffix()} or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. src/go/printer/testdata/expressions.input

    	// handle comments correctly in multi-line expressions
    	for i := 0; i < l; i++ {
    		if s[i].inst.index() == index && // same instruction
    		   s[i].match[0] < pos {	// earlier match already going; leftmost wins
    		   	return s
    		 }
    	}
    }
    
    func (self *T) foo(x int) *T { return self }
    
    func _() { module.Func1().Func2() }
    
    func _() {
    	_ = new(T).
    		foo(1).
    			foo(2).
    		foo(3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    		doneCh: make(chan struct{}),
    	}
    }
    
    //	 This test exercises the graceful termination scenario
    //	 described in the following diagram
    //	   - every vertical line is an independent timeline
    //	   - the leftmost vertical line represents the go routine that
    //	     is executing GenericAPIServer.Run method
    //	   - (signal name) indicates that the given lifecycle signal has been fired
    //
    //	                                 stopCh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  4. src/go/printer/testdata/expressions.golden

    	// handle comments correctly in multi-line expressions
    	for i := 0; i < l; i++ {
    		if s[i].inst.index() == index &&	// same instruction
    			s[i].match[0] < pos {	// earlier match already going; leftmost wins
    			return s
    		}
    	}
    }
    
    func (self *T) foo(x int) *T	{ return self }
    
    func _()	{ module.Func1().Func2() }
    
    func _() {
    	_ = new(T).
    		foo(1).
    		foo(2).
    		foo(3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  5. src/go/printer/testdata/expressions.raw

    	// handle comments correctly in multi-line expressions
    	for i := 0; i < l; i++ {
    		if s[i].inst.index() == index &&	// same instruction
    			s[i].match[0] < pos {	// earlier match already going; leftmost wins
    			return s
    		}
    	}
    }
    
    func (self *T) foo(x int) *T	{ return self }
    
    func _()	{ module.Func1().Func2() }
    
    func _() {
    	_ = new(T).
    		foo(1).
    		foo(2).
    		foo(3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  6. src/regexp/exec.go

    }
    
    // doMatch reports whether either r, b or s match the regexp.
    func (re *Regexp) doMatch(r io.RuneReader, b []byte, s string) bool {
    	return re.doExecute(r, b, s, 0, 0, nil) != nil
    }
    
    // doExecute finds the leftmost match in the input, appends the position
    // of its subexpressions to dstCap and returns dstCap.
    //
    // nil is returned if no matches are found and non-nil if matches are found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

    // To:
    //   mhlo.dot_general %input, %param {batch_dims = [0]}
    //
    // This usage will mostly come from tf-unroll-batch-matmul, so it's fine to only
    // handle the case where batching dim is the leftmost dim.
    LogicalResult ConvertReshapeDotRhsToBatchedDot(mhlo::DotGeneralOp dot,
                                                   PatternRewriter &rewriter) {
      mhlo::DotDimensionNumbersAttr dim_nums = dot.getDotDimensionNumbers();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/regexp/exec_test.go

    // each regexp run produces two match results, one for a
    // “full match” that restricts the regexp to matching the entire
    // string or nothing, and one for a “partial match” that gives
    // the leftmost first match found in the string.
    //
    // Lines beginning with # are comments. Lines beginning with
    // a capital letter are test names printed during RE2's test suite
    // and are echoed into t but otherwise ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/bidi/core.go

    		}
    		start = limit
    	}
    	return result
    }
    
    // Return reordering array for a given level array. This reorders a single
    // line. The reordering is a visual to logical map. For example, the
    // leftmost char is string.charAt(order[0]). Rule L2.
    func computeReordering(levels []level) []int {
    	result := make([]int, len(levels))
    	// initialize order
    	for i := range result {
    		result[i] = i
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  10. src/crypto/internal/mlkem768/mlkem768.go

    	//                                           d₂
    	//
    	// Note that in little-endian, the rightmost bits are the most significant
    	// bits (dropped with a mask) and the leftmost bits are the least
    	// significant bits (dropped with a right shift).
    
    	var a nttElement
    	var j int        // index into a
    	var buf [24]byte // buffered reads from B
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top