Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,163 for extr6 (0.63 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. docs/en/docs/tutorial/body-fields.md

    ## Add extra information
    
    You can declare extra information in `Field`, `Query`, `Body`, etc. And it will be included in the generated JSON Schema.
    
    You will learn more about adding extra information later in the docs, when learning to declare examples.
    
    !!! warning
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/objectivec/ObjectiveCLanguageIncrementalCompileIntegrationTest.groovy

            then:
            skipped compileTask
            outputs.noneRecompiled()
    
            where:
            testCase                       | headerDirs
            "extra header dir after"       | '"src/main/headers", "src/additional-headers"'
            "extra header dir before"      | '"src/additional-headers", "src/main/headers"'
            "replacement header dir after" | '"src/main/headers", "src/replacement-headers"'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top