Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for sensible (0.27 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            when:
            run(":printTestSoftwareTypeExtensionConfiguration")
    
            then:
            assertThatDeclaredValuesAreSetProperly()
        }
    
        def 'sensible error when model types do not match in software type declaration'() {
            given:
            withSoftwareTypePluginWithMismatchedModelTypes().prepareToExecute()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractSerializer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize;
    
    import com.google.common.base.Objects;
    
    /**
     * This abstract class provide a sensible default implementation for {@code Serializer} equality. This equality
     * implementation is required to enable cache instance reuse within the same Gradle runtime. Serializers are used
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/sysvshm_unix.go

    	var info SysvShmDesc
    
    	_, err := SysvShmCtl(id, IPC_STAT, &info)
    	if err != nil {
    		// release the shared memory if we can't find the size
    
    		// ignoring error from shmdt as there's nothing sensible to return here
    		shmdt(addr)
    		return nil, err
    	}
    
    	// Use unsafe to convert addr into a []byte.
    	b := unsafe.Slice((*byte)(unsafe.Pointer(addr)), int(info.Segsz))
    	return b, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     */
    public interface KotlinPlatformComponent
    
    /**
     * An optional [KotlinPlatformComponent]. The Analysis API engine does not require an optional platform component to be implemented and
     * will use sensible fallbacks or disable/avoid certain behaviors instead.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

            try {
                File upperCased = new File(file.getPath().toUpperCase(Locale.ROOT));
                return !hasContent(upperCased, content);
            } catch (IOException e) {
                // not fully accurate but a sensible fallback
                // see http://stackoverflow.com/questions/1288102/how-do-i-detect-whether-the-file-system-is-case-sensitive
                boolean result = !new File("foo").equals(new File("FOO"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/crypto/rsa/pss.go

    // SignPSS calculates the signature of digest using PSS.
    //
    // digest must be the result of hashing the input message using the given hash
    // function. The opts argument may be nil, in which case sensible defaults are
    // used. If opts.Hash is set, it overrides hash.
    //
    // The signature is randomized depending on the message, key, and salt size,
    // using bytes from rand. Most applications should use [crypto/rand.Reader] as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

            when:
            run "projects"
            then:
            outputDoesNotContain("Included builds")
        }
    
        def "rendering long project descriptions is sensible"() {
            settingsFile << "rootProject.name = 'my-root-project'"
            buildFile << """
                description = '''
    this is a long description
    
    this shouldn't be visible
                '''
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    Plugins can:
    
    - Add tasks to the project (e.g. compile, test).
    - Extend the basic Gradle model (e.g. add new DSL elements that can be configured).
    - Configure the project, according to conventions (e.g. add new tasks or configure sensible defaults).
    - Apply specific configuration (e.g. add organizational repositories or enforce standards).
    - Add new properties and methods to existing types via extensions.
    
    == Step 2. Applying a Plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. docs/ftp/README.md

    diffie-hellman-group14-sha256
    diffie-hellman-group16-sha512
    diffie-hellman-group14-sha1
    diffie-hellman-group1-sha1
    ```
    
    `--sftp=cipher-algos=...` specifies the allowed cipher algorithms. 
    If unspecified then a sensible default is used.
    
    Valid values: 
    ```
    aes128-ctr
    aes192-ctr
    aes256-ctr
    ******@****.***
    ******@****.***
    ******@****.***
    arcfour256
    arcfour128
    arcfour
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "everything has convention and is set"             | setAll("convention", "convention") | setAll("test", "baz") | """id = test\nbar = baz"""
        }
    
        def "sensible error when conventions are set more than once (#testCase)"() {
            given:
            withSoftwareTypePlugins().prepareToExecute()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top