Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,516 for extr6 (0.04 sec)

  1. platforms/documentation/docs/src/snippets/signing/tasks/kotlin/build.gradle.kts

    plugins {
        signing
    }
    
    // Typically set in ~/.gradle/gradle.properties
    extra["signing.keyId"] = "24875D73"
    extra["signing.password"] = "gradle"
    extra["signing.secretKeyRingFile"] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-task[]
    tasks.register<Zip>("stuffZip") {
        archiveBaseName = "stuff"
        from("src/stuff")
    }
    
    signing {
        sign(tasks["stuffZip"])
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 393 bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsDslIntegrationSpec.groovy

            buildscript {
                settings.extra["aValue"] = "hello"
    
                assert(settings.extra["aValue"] == "hello") {
                    "Can access inside buildscript"
                }
    
                val hamlet by settings.extra {
                    "To be or not to be"
                }
    
                assert(hamlet == "To be or not to be") {
                    "Can access inside buildscript"
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/compress/gzip/gzip_test.go

    		t.Fatalf("payload is %q, want %q", string(b), "payload")
    	}
    	if r.Comment != "comment" {
    		t.Fatalf("comment is %q, want %q", r.Comment, "comment")
    	}
    	if string(r.Extra) != "extra" {
    		t.Fatalf("extra is %q, want %q", r.Extra, "extra")
    	}
    	if r.ModTime.Unix() != 1e8 {
    		t.Fatalf("mtime is %d, want %d", r.ModTime.Unix(), uint32(1e8))
    	}
    	if r.Name != "name" {
    		t.Fatalf("name is %q, want %q", r.Name, "name")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:10:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationIntegTest.groovy

                                    homepage = 'http://www.example.com/library'
                                }
                                extraInfo 'http://my.extra.info1', 'foo', 'fooValue'
                                extraInfo 'http://my.extra.info2', 'bar', 'barValue'
                                withXml {
                                    asNode().info[0].@resolver = 'test'
                                }
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/nilcheck_test.go

    			Valu("bool1", OpIsNonNil, c.config.Types.Bool, 0, nil, "ptr1"),
    			If("bool1", "extra", "secondCheck")),
    		Bloc("secondCheck",
    			Valu("bool2", OpIsNonNil, c.config.Types.Bool, 0, nil, "ptr1"),
    			If("bool2", "extra", "thirdCheck")),
    		Bloc("thirdCheck",
    			Valu("bool3", OpIsNonNil, c.config.Types.Bool, 0, nil, "ptr1"),
    			If("bool3", "extra", "exit")),
    		Bloc("extra",
    			Goto("exit")),
    		Bloc("exit",
    			Exit("mem")))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. src/runtime/cgo/abi_ppc64x.h

    	SAVE_VR(extra+FIXED_FRAME+SAVE_GPR_SIZE+SAVE_FPR_SIZE, R0) \
    	MOVD	$0, R0
    
    // This unstacks the frame, restoring all callee-save registers
    // as saved by STACK_AND_SAVE_HOST_TO_GO_ABI.
    //
    // R0 is not guaranteed to contain $0 after this macro.
    #define UNSTACK_AND_RESTORE_GO_TO_HOST_ABI(extra)                     \
    	RESTORE_GPR(extra+FIXED_FRAME)                                \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/signing/configurations/kotlin/build.gradle.kts

        java
    // tag::use-plugin[]
        signing
    }
    // end::use-plugin[]
    
    
    group = "gradle"
    version = "1.0"
    
    // Typically set in ~/.gradle/gradle.properties
    extra["signing.keyId"] = "24875D73"
    extra["signing.password"] = "gradle"
    extra["signing.secretKeyRingFile"] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-runtime-elements[]
    signing {
        sign(configurations.runtimeElements.get())
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 479 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ClientModuleDependenciesResolveIntegrationTest.groovy

                .artifact()
                .artifact(classifier: "extra")
                .publish()
    
            buildFile << """
    repositories {
        ivy { url "${ivyHttpRepo.uri}" }
    }
    configurations {
        regular
        clientModule
    }
    dependencies {
        clientModule "group:projectA:1.2"
        clientModule(module("group:projectA:1.2")) {
            artifact { classifier = 'extra' }
        }
    }
    
    task listClientModuleJars {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/signing/conditional/kotlin/build.gradle.kts

    signing {
        setRequired({
            (project.extra["isReleaseVersion"] as Boolean) && gradle.taskGraph.hasTask("publish")
        })
        sign(publishing.publications["main"])
    }
    // end::conditional-signing[]
    
    // Alternative to signing.required
    // tag::only-if[]
    tasks.withType<Sign>().configureEach {
        onlyIf("isReleaseVersion is set") { project.extra["isReleaseVersion"] as Boolean }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 930 bytes
    - Viewed (0)
  10. test/codegen/noextend.go

    var val64 [8]uint64
    var val32 [8]uint32
    var val16 [8]uint16
    var val8 [8]uint8
    
    // Avoid zero/sign extensions following a load
    // which has extended the value correctly.
    // Note: No tests are done for int8 since
    // an extra extension is usually needed due to
    // no signed byte load.
    
    func set16(x8 int8, u8 *uint8, y8 int8, z8 uint8) {
    	// Truncate not needed, load does sign/zero extend
    
    	// ppc64x:-"MOVBZ\tR\\d+,\\sR\\d+"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top