Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 255 for inits (0.04 sec)

  1. src/main/java/jcifs/smb1/util/DES.java

        }
    
        /// Spread ints into bytes.
        public static void spreadIntsToBytes( int[] inInts, int inOff, byte[] outBytes,
                                             int outOff, int intLen ) {
    
            for ( int i = 0; i < intLen; ++i ) {
    
                outBytes[outOff + i * 4    ] = (byte) ( inInts[inOff + i] >>> 24 );
                outBytes[outOff + i * 4 + 1] = (byte) ( inInts[inOff + i] >>> 16 );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  2. src/sort/sort_test.go

    	if IsSorted(data) {
    		t.Fatalf("terrible rand.rand")
    	}
    	data.initB()
    	Stable(data)
    	if !IsSorted(data) {
    		t.Errorf("Stable didn't sort %d ints", n)
    	}
    	if !data.inOrder() {
    		t.Errorf("Stable wasn't stable on %d ints", n)
    	}
    
    	// already sorted
    	data.initB()
    	Stable(data)
    	if !IsSorted(data) {
    		t.Errorf("Stable shuffled sorted %d ints (order)", n)
    	}
    	if !data.inOrder() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pkg/api/pod/warnings_test.go

    			},
    			ImagePullSecrets: []api.LocalObjectReference{
    				{Name: "secret1"},
    				{Name: "secret2"},
    			},
    			InitContainers: []api.Container{
    				{Name: "init1", Env: env, Resources: api.ResourceRequirements{Requests: resources, Limits: resources}},
    				{Name: "init2", Env: env, Resources: api.ResourceRequirements{Requests: resources, Limits: resources}},
    			},
    			Containers: []api.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/CipherSuite.kt

        @JvmField val TLS_RSA_WITH_NULL_SHA = init("SSL_RSA_WITH_NULL_SHA", 0x0002)
    
        @JvmField val TLS_RSA_EXPORT_WITH_RC4_40_MD5 = init("SSL_RSA_EXPORT_WITH_RC4_40_MD5", 0x0003)
    
        @JvmField val TLS_RSA_WITH_RC4_128_MD5 = init("SSL_RSA_WITH_RC4_128_MD5", 0x0004)
    
        @JvmField val TLS_RSA_WITH_RC4_128_SHA = init("SSL_RSA_WITH_RC4_128_SHA", 0x0005)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 39.9K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            projectLayoutRegistry = Mock()
            defaultGenerator = Mock()
            buildConverter = Mock()
            init.projectLayoutRegistry = projectLayoutRegistry
            init.insecureProtocol.convention(InsecureProtocolOption.WARN)
            init.useDefaults.convention(false)
            init.comments.convention(true)
            init.allowFileOverwrite.convention(false)
        }
    
        def "creates project with all defaults"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            when:
            succeeds('init', '--type', 'java-application', '--dsl', GROOVY.toString().toLowerCase())
    
            then:
    
            targetDir.file("settings.gradle").assertContents(containsString(userManual("multi_project_builds").getUrl()))
        }
    
        def "gives decent error message when triggered with unknown init-type"() {
            when:
            fails('init', '--type', 'some-unknown-library')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginTemplatesTest.kt

                        )
    
                        // Gradle object plugins, a.k.a., precompiled init script plugins,
                        // must be named `*.init.gradle.kts`
                        withFile(
                            "my-init-plugin.init.gradle.kts",
                            """
                            println("my-init-plugin applied!")
                            """
                        )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

        def "generates basic kotlin build script"() {
            when:
            builder.create(target).generate()
    
            then:
            assertOutputFile("""/*
     * This file was generated by the Gradle 'init' task.
     */
    """)
        }
    
        def "generates basic kotlin build script with @Incubating APIs warning"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

            failure.assertHasCause("There were failing tests.")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/28251")
        def "singleModule init with incubating"() {
            def dsl = dslFixtureFor(scriptDsl)
    
            when:
            run 'init', '--dsl', scriptDsl.id as String, '--incubating'
    
            then:
            dsl.assertGradleFilesGenerated()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    // limitations under the License.
    
    [[build_init_plugin]]
    = Build Init Plugin
    
    
    The Build Init plugin can be used to create a new Gradle build. It supports creating brand new Gradle builds of various types as well as converting existing Apache Maven builds to Gradle.
    
    [[sec:sample_usage]]
    == Sample usage
    
    ```bash
    gradle init \
      --type java-application \
      --dsl kotlin \
      --test-framework junit-jupiter \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top