Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,632 for extr6 (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/crypto/tls/cache_test.go

    	// the initial call should not cause additional allocations.
    	for extra := 0; extra < 4; extra++ {
    		b.Run(fmt.Sprint(extra), func(b *testing.B) {
    			actives := make([]*activeCert, extra+1)
    			b.ResetTimer()
    			for i := 0; i < b.N; i++ {
    				var err error
    				actives[0], err = cc.newCert(p.Bytes)
    				if err != nil {
    					b.Fatal(err)
    				}
    				for j := 0; j < extra; j++ {
    					actives[j+1], err = cc.newCert(p.Bytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 19:46:27 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. 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)
  7. src/runtime/cpuprof.go

    		osyield()
    	}
    
    	if cpuprof.numExtra+1+len(stk) < len(cpuprof.extra) {
    		i := cpuprof.numExtra
    		cpuprof.extra[i] = uintptr(1 + len(stk))
    		copy(cpuprof.extra[i+1:], stk)
    		cpuprof.numExtra += 1 + len(stk)
    	} else {
    		cpuprof.lostExtra++
    	}
    
    	prof.signalLock.Store(0)
    }
    
    // addExtra adds the "extra" profiling events,
    // queued by addNonGo, to the profile log.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

        def 'copies files and removes extra files from destDir'() {
            given:
            defaultSourceFileTree()
            file('dest').create {
                file 'extra.txt'
                extraDir { file 'extra.txt' }
                dir1 {
                    file 'extra.txt'
                    extraDir { file 'extra.txt' }
                }
                someOtherEmptyDir {}
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. pkg/registry/authentication/selfsubjectreview/rest.go

    				Username: user.GetName(),
    				UID:      user.GetUID(),
    				Groups:   user.GetGroups(),
    				Extra:    make(map[string]authenticationapi.ExtraValue, len(extra)),
    			},
    		},
    	}
    	for key, attr := range extra {
    		selfSR.Status.UserInfo.Extra[key] = attr
    	}
    
    	return selfSR, nil
    }
    
    var _ rest.SingularNameProvider = &REST{}
    
    func (r *REST) GetSingularName() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1beta1/certificatesigningrequestspec.go

    	}
    	return b
    }
    
    // WithExtra puts the entries into the Extra field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, the entries provided by each call will be put on the Extra field,
    // overwriting an existing map entries in Extra field with the same key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:16 UTC 2021
    - 5.7K bytes
    - Viewed (0)
Back to top