Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 162 for sensible (0.16 sec)

  1. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    therefore I tried, as in the 12th, 13th, and 14th Experiments, whether the Light of this Colour did not consist of a sensible Mixture of heterogeneous Rays, but found it did not. Nor did the Refractions cause any other sensible Colour than violet to emerge out of this Light, as they would have done out of white Light, and by consequence out of this violet Light had it been sensibly compounded with white Light. And therefore I concluded, that the reason why I could not see the Species of the Lines...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Optional.java

       *
       * <p>Note about generics: The signature {@code public T or(T defaultValue)} is overly
       * restrictive. However, the ideal signature, {@code public <S super T> S or(S)}, is not legal
       * Java. As a result, some sensible operations involving subtypes are compile errors:
       *
       * <pre>{@code
       * Optional<Integer> optionalInt = getSomeOptionalInt();
       * Number value = optionalInt.or(0.5); // error
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    All Gradle core plugins follow the software engineering paradigm link:https://en.wikipedia.org/wiki/Convention_over_configuration[convention over configuration].
    The plugin logic provides users with sensible defaults and standards, the conventions, in a certain context.
    Let’s take the <<java_plugin.adoc#java_plugin,Java plugin>> as an example.
    
    * It defines the directory `src/main/java` as the default source directory for compilation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

            e.message == "bad rule source"
    
            and:
            1 * adapter.createFromRuleSource(ComponentMetadataDetails, _) >> { throw new InvalidUserCodeException("bad rule source") }
        }
    
        def "produces sensible error when rule action throws an exception"() {
            def failure = new Exception("from test")
            def metadata = ivyMetadata()
    
            when:
            handler.all { throw failure }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. docs/en/docs/alternatives.md

    They are, more or less, at opposite ends, complementing each other.
    
    Requests has a very simple and intuitive design, it's very easy to use, with sensible defaults. But at the same time, it's very powerful and customizable.
    
    That's why, as said in the official website:
    
    > Requests is one of the most downloaded Python packages of all time
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * If you want to get hold of this information you can ask tooling API to build this model.
         * <p>
         * If not configured or null is passed, then the sensible default will be used.
         *
         * @param javaHome to use for the Gradle process
         * @return this
         * @throws IllegalArgumentException when supplied javaHome is not a valid folder.
         * @since 1.0-milestone-8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Optional.java

       *
       * <p>Note about generics: The signature {@code public T or(T defaultValue)} is overly
       * restrictive. However, the ideal signature, {@code public <S super T> S or(S)}, is not legal
       * Java. As a result, some sensible operations involving subtypes are compile errors:
       *
       * <pre>{@code
       * Optional<Integer> optionalInt = getSomeOptionalInt();
       * Number value = optionalInt.or(0.5); // error
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/jar.go

    	if domain == "" {
    		// No domain attribute in the SetCookie header indicates a
    		// host cookie.
    		return host, true, nil
    	}
    
    	if isIP(host) {
    		// RFC 6265 is not super clear here, a sensible interpretation
    		// is that cookies with an IP address in the domain-attribute
    		// are allowed.
    
    		// RFC 6265 section 5.2.3 mandates to strip an optional leading
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/storage/eviction.go

    	return options.Preconditions == nil || options.Preconditions.ResourceVersion == nil
    }
    
    func createTooManyRequestsError(name string) error {
    	// TODO: Once there are time-based
    	// budgets, we can sometimes compute a sensible suggested value.  But
    	// even without that, we can give a suggestion (even if small) that
    	// prevents well-behaved clients from hammering us.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    will be compiled incrementally.
    
    Incremental compilation requires dependency analysis of the source code. The results of this analysis are stored in the file designated by `scalaCompileOptions.incrementalOptions.analysisFile` (which has a sensible default). In a multi-project build, analysis files are passed on to downstream `ScalaCompile` tasks to enable incremental compilation across project boundaries. For `ScalaCompile` tasks added by the Scala plugin, no configuration is necessary to...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
Back to top