Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 99 of 99 for lineFor (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    // there's little it can do for that.
    func okPrintfArg(pass *analysis.Pass, call *ast.CallExpr, state *formatState) (ok bool) {
    	var v printVerb
    	found := false
    	// Linear scan is fast enough for a small list.
    	for _, v = range printVerbs {
    		if v.verb == state.verb {
    			found = true
    			break
    		}
    	}
    
    	// Could current arg implement fmt.Formatter?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multisets.java

          return entry2.getCount() - entry1.getCount(); // subtracting two nonnegative integers
        }
      }
    
      /**
       * An {@link AbstractMultiset} with additional default implementations, some of them linear-time
       * implementations in terms of {@code elementSet} and {@code entrySet}.
       */
      private abstract static class ViewMultiset<E extends @Nullable Object>
          extends AbstractMultiset<E> {
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multisets.java

          return entry2.getCount() - entry1.getCount(); // subtracting two nonnegative integers
        }
      }
    
      /**
       * An {@link AbstractMultiset} with additional default implementations, some of them linear-time
       * implementations in terms of {@code elementSet} and {@code entrySet}.
       */
      private abstract static class ViewMultiset<E extends @Nullable Object>
          extends AbstractMultiset<E> {
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/MediaType.java

              .and(CharMatcher.noneOf("()<>@,;:\\\"/[]?="));
    
      private static final CharMatcher QUOTED_TEXT_MATCHER = ascii().and(CharMatcher.noneOf("\"\\\r"));
    
      /*
       * This matches the same characters as linear-white-space from RFC 822, but we make no effort to
       * enforce any particular rules with regards to line folding as stated in the class docs.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // the else branch.
    struct GTEST_API_ ConstCharPtr {
      ConstCharPtr(const char* str) : value(str) {}
      operator bool() const { return true; }
      const char* value;
    };
    
    // A simple Linear Congruential Generator for generating random
    // numbers with a uniform distribution.  Unlike rand() and srand(), it
    // doesn't use global state (and therefore can't interfere with user
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/MediaType.java

              .and(CharMatcher.noneOf("()<>@,;:\\\"/[]?="));
    
      private static final CharMatcher QUOTED_TEXT_MATCHER = ascii().and(CharMatcher.noneOf("\"\\\r"));
    
      /*
       * This matches the same characters as linear-white-space from RFC 822, but we make no effort to
       * enforce any particular rules with regards to line folding as stated in the class docs.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // the else branch.
    struct GTEST_API_ ConstCharPtr {
      ConstCharPtr(const char* str) : value(str) {}
      operator bool() const { return true; }
      const char* value;
    };
    
    // A simple Linear Congruential Generator for generating random
    // numbers with a uniform distribution.  Unlike rand() and srand(), it
    // doesn't use global state (and therefore can't interfere with user
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Gradle and Maven have fundamentally different views on how to build a project.
    Gradle provides a flexible and extensible build model that delegates the actual work to the execution of a graph of tasks.
    Maven uses a model of fixed, linear phases to which you can attach goals (the things that do the work).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. src/regexp/regexp.go

    // https://golang.org/s/re2syntax, except for \C.
    // For an overview of the syntax, see the [regexp/syntax] package.
    //
    // The regexp implementation provided by this package is
    // guaranteed to run in time linear in the size of the input.
    // (This is a property not guaranteed by most open source
    // implementations of regular expressions.) For more information
    // about this property, see
    //
    //	https://swtch.com/~rsc/regexp/regexp1.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top