Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 365 for regular (0.14 sec)

  1. src/math/big/natdiv.go

    2-by-1 hardware instruction.
    
    For example, here is a sketch of dividing 10 digits by 4, proceeding with
    wide digits corresponding to two regular digits. The first step, still special,
    must leave off a (regular) digit, dividing 5 by 4 and producing a 4-digit
    remainder less than v. The middle steps divide 6 digits by 4, guaranteed to
    produce two output digits each (one wide digit) with 4-digit remainders.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  2. src/net/netip/fuzz_test.go

    	// IPv4 in class B form.
    	"192.168.12345",
    	// IPv4 in class B form, with a small enough number to be
    	// parseable as a regular dotted decimal field.
    	"127.0.1",
    	// IPv4 in class A form.
    	"192.1234567",
    	// IPv4 in class A form, with a small enough number to be
    	// parseable as a regular dotted decimal field.
    	"127.1",
    	// IPv4 field has value >255.
    	"192.168.300.1",
    	// IPv4 with too many fields.
    	"192.168.0.1.5.6",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

          }
          if (to != Bound.NO_BOUND) {
            extremeValues.add(delegate.aboveSamplesLesser());
            extremeValues.add(delegate.aboveSamplesGreater());
          }
    
          // the regular values should be visible after filtering
          List<@Nullable Object> allEntries = new ArrayList<>();
          allEntries.addAll(extremeValues);
          allEntries.addAll(normalValues);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    == Unexpected input file or directory
    
    This error indicates that a property expected a regular file as an input but that it was provided with a directory (or the other way around).
    
    For example, if property is annotated with `@InputFile`:
    
    ```groovy
    @InputFile
    File getInputFile()
    ```
    
    Then Gradle expects the input file to be a _regular file_. If the input is a directory, then validation fails.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator.java

    import org.codehaus.plexus.interpolation.PrefixedValueSourceWrapper;
    import org.codehaus.plexus.interpolation.RecursionInterceptor;
    import org.codehaus.plexus.interpolation.ValueSource;
    
    /**
     * Use a regular expression search to find and resolve expressions within the POM.
     *
     */
    public abstract class AbstractStringBasedModelInterpolator implements ModelInterpolator {
        private static final String PREFIX_PROJECT = "project.";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    // (The cgocall analysis is concerned with uses, not declarations.)
    // Specifically, type declarations are discarded;
    // all names in each var and const declaration are blanked out;
    // each method is turned into a regular function by turning
    // the receiver into the first parameter;
    // and all functions are renamed to "_".
    //
    //	package p
    //	import . "·this·" // declares T, k, x, y, f, g, T.f
    //	import "C"
    //	import "fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

        Reason: ${kind.capitalize()} aliases must match the following regular expression: [a-z]([a-zA-Z0-9_.\\-])+.
    
        Possible solution: Make sure the alias matches the [a-z]([a-zA-Z0-9_.\\-])+ regular expression.
    
        ${documentation}"""
            }
        }
    
        static class UnexpectedFormatVersion extends InCatalog<UnexpectedFormatVersion> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt.go

    	// If the size is unknown (or bogus, or overflows an int), fall back to
    	// a size-independent ReadAll.
    	size := -1
    	if info != nil && info.Mode().IsRegular() && int64(int(info.Size())) == info.Size() {
    		size = int(info.Size())
    	}
    	if size+1 <= 0 {
    		// The file is not known to be regular, so we don't have a reliable size for it.
    		var err error
    		src, err := io.ReadAll(in)
    		if err != nil {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/TimeLimiter.java

       *     wait on each method call to the proxy
       * @return a time-limiting proxy
       * @throws IllegalArgumentException if {@code interfaceType} is a regular class, enum, or
       *     annotation type, rather than an interface
       */
      @SuppressWarnings("GoodTime") // should accept a java.time.Duration
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. src/flag/flag_test.go

    	var flag bool
    	fs.BoolVar(&flag, "flag", false, "regular flag")
    	// Regular flag invocation should work
    	err := fs.Parse([]string{"-flag=true"})
    	if err != nil {
    		t.Fatal("expected no error; got ", err)
    	}
    	if !flag {
    		t.Error("flag was not set by -flag")
    	}
    	if helpCalled {
    		t.Error("help called for regular flag")
    		helpCalled = false // reset for next test
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top