Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 212 for endPos (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	// keeps compatibility with etcd2 impl for custom prefixes that don't start with '/'
    	pathPrefix := path.Join("/", prefix)
    	if !strings.HasSuffix(pathPrefix, "/") {
    		// Ensure the pathPrefix ends in "/" here to simplify key concatenation later.
    		pathPrefix += "/"
    	}
    
    	w := &watcher{
    		client:        c,
    		codec:         codec,
    		newFunc:       newFunc,
    		groupResource: groupResource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            for (Object value : values) {
                result.add(toEnum(enumType, value));
            }
            return result;
        }
    
        /**
         * Checks whether the fist {@link CharSequence} ends with the second.
         *
         * If the {@link CharSequence#charAt(int)} method of both sequences is fast,
         * this check is faster than converting them to Strings and using {@link String#endsWith(String)}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. internal/rest/client.go

    		if err != nil {
    			return
    		}
    	}
    
    	// Write response to trace output.
    	_, err = fmt.Fprint(c.TraceOutput, strings.TrimSuffix(string(respTrace), "\r\n"))
    	if err != nil {
    		return
    	}
    
    	// Ends the http dump.
    	_, err = fmt.Fprintln(c.TraceOutput, "---------END-HTTP---------")
    	if err != nil {
    		return
    	}
    
    	// Returns success.
    	return
    }
    
    // ErrClientClosed returned when *Client is closed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/core.go

    			}
    		}
    	}
    
    	// Rule W5.
    	for i, t := range s.types {
    		if t == ET {
    			// locate end of sequence
    			runStart := i
    			runEnd := s.findRunLimit(runStart, ET)
    
    			// check values at ends of sequence
    			t := s.sos
    			if runStart > 0 {
    				t = s.types[runStart-1]
    			}
    			if t != EN {
    				t = s.eos
    				if runEnd < len(s.types) {
    					t = s.types[runEnd]
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    		res.funcs[fn] = kind
    		for _, caller := range w.callers {
    			checkPrintfFwd(pass, caller.w, caller.call, kind, res)
    		}
    	}
    }
    
    // isPrint records the print functions.
    // If a key ends in 'f' then it is assumed to be a formatted print.
    //
    // Keys are either values returned by (*types.Func).FullName,
    // or case-insensitive identifiers such as "errorf".
    //
    // The -funcs flag adds to this set.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. src/go/types/decl.go

    			check.processDelayed(top)
    
    			// spec: "The scope of a constant or variable identifier declared
    			// inside a function begins at the end of the ConstSpec or VarSpec
    			// (ShortVarDecl for short variable declarations) and ends at the
    			// end of the innermost containing block."
    			scopePos := d.spec.End()
    			for i, name := range d.spec.Names {
    				check.declare(check.scope, name, lhs[i], scopePos)
    			}
    
    		case varDecl:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Bytes.java

          array[j] = tmp;
        }
      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Bytes.asList(array),
       * distance)}, but is somewhat faster.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. test/nosplit.go

    # That is, a line beginning "start " indicates the start of a new test case.
    # Within a stanza, ; can be used instead of \n to separate lines.
    #
    # After the function definition, the test case ends with an optional
    # REJECT line, specifying the architectures on which the case should
    # be rejected. "REJECT" without any architectures means reject on all architectures.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Verify.java

     *
     * <p>Remember that parameter values for message construction must all be computed eagerly, and
     * autoboxing and varargs array creation may happen as well, even when the verification succeeds and
     * the message ends up unneeded. Performance-sensitive verification checks should continue to use
     * usual form:
     *
     * <pre>{@code
     * Bill bill = remoteService.getLastUnpaidBill();
     * if (bill.status() != Status.UNPAID) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  10. src/embed/embed.go

    }
    
    // readDir returns the list of files corresponding to the directory dir.
    func (f FS) readDir(dir string) []file {
    	if f.files == nil {
    		return nil
    	}
    	// Binary search to find where dir starts and ends in the list
    	// and then return that slice of the list.
    	files := *f.files
    	i := sortSearch(len(files), func(i int) bool {
    		idir, _, _ := split(files[i].name)
    		return idir >= dir
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top