Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 345 for convenient (0.41 sec)

  1. src/bufio/bufio.go

    // it returns the data read before the error and the error itself (often io.EOF).
    // ReadBytes returns err != nil if and only if the returned data does not end in
    // delim.
    // For simple uses, a Scanner may be more convenient.
    func (b *Reader) ReadBytes(delim byte) ([]byte, error) {
    	full, frag, n, err := b.collectFragments(delim)
    	// Allocate new buffer to hold the full pieces and the fragment.
    	buf := make([]byte, n)
    	n = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableTable.java

       * is called, the views are sorted by the supplied comparators.
       *
       * <p>For empty or single-cell immutable tables, {@link #of()} and {@link #of(Object, Object,
       * Object)} are even more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple tables in series. Each table is a superset of the tables created before it.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableTable.java

       * is called, the views are sorted by the supplied comparators.
       *
       * <p>For empty or single-cell immutable tables, {@link #of()} and {@link #of(Object, Object,
       * Object)} are even more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple tables in series. Each table is a superset of the tables created before it.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Dependency locking can be used in cases where reproducibility is not the main goal.
    As a build author, you may want to have different frequency of dependency version updates, based on their origin for example.
    In that case, it might be convenient to ignore some dependencies because you always want to use the latest version for those.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    The `withXml` hook allows to manipulate the in-memory XML representation just before the file gets written to disk. Although Groovy's XML support and Kotlin's extension functions make up for a lot, this approach is less convenient than manipulating the domain objects. In return, you get total control over the generated file, including sections not modeled by the domain objects.
    
    .Customizing the XML
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. src/runtime/runtime1.go

    	// The value can change at any time (in response to os.Setenv("GODEBUG"))
    	// and affects all extant timer channels immediately.
    	// Programs wouldn't normally change over an execution,
    	// but allowing it is convenient for testing and for programs
    	// that do an os.Setenv in main.init or main.main.
    	asynctimerchan atomic.Int32
    }
    
    var dbgvars = []*dbgVar{
    	{name: "adaptivestackstart", value: &debug.adaptivestackstart},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        Timeout(long millis, String label) {
          this.millis = millis;
          this.label = label;
        }
    
        @Override
        public String toString() {
          return label;
        }
      }
    
      /** Convenient subsets of the {@link Timeout} enumeration for specifying scenario outcomes. */
      private enum TimeoutsToUse {
        ANY(Timeout.values()),
        PAST(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        Timeout(long millis, String label) {
          this.millis = millis;
          this.label = label;
        }
    
        @Override
        public String toString() {
          return label;
        }
      }
    
      /** Convenient subsets of the {@link Timeout} enumeration for specifying scenario outcomes. */
      private enum TimeoutsToUse {
        ANY(Timeout.values()),
        PAST(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. src/go/token/position.go

    		}
    	}
    	if s == "" {
    		s = "-"
    	}
    	return s
    }
    
    // Pos is a compact encoding of a source position within a file set.
    // It can be converted into a [Position] for a more convenient, but much
    // larger, representation.
    //
    // The Pos value for a given file is a number in the range [base, base+size],
    // where base and size are specified when a file is added to the file set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    Ivy's Ant tasks would then map to the Gradle tasks like this:
    
     * `<deliver>` -> `generateDescriptorFileForMyLibraryPublication`
     * `<publish>` -> `publishMyLibraryPublicationToMyRepoRepository`
    
    There is also a convenient `publish` task that publishes _all_ publications to _all_ repositories.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top