Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for seminfo (0.15 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

    class SigningTasksIntegrationSpec extends SigningIntegrationSpec {
    
        def "sign jar with default signatory"() {
            given:
            buildFile << """
                ${keyInfo.addAsPropertiesScript()}
    
                signing {
                    ${signingConfiguration()}
                    sign jar
                }
            """
    
            when:
            run "signJar"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemInfoOsMemoryInfoTest.groovy

        }
    
        def "throws unsupported operation exception when non-numeric values are provided"() {
            when:
            new MemInfoOsMemoryInfo().getOsSnapshotFromMemInfo(meminfo)
    
            then:
            thrown(UnsupportedOperationException)
    
            where:
            meminfo << [["bogustown"], bogusMeminfoLinux3(), bogusMeminfoLinux4()]
        }
    
        private static List<String> meminfoLinux3() {
            """MemTotal:       49463180 kB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    func (deviceInfoSet DevInfo) DestroyDriverInfoList(deviceInfoData *DevInfoData, driverType SPDIT) error {
    	return SetupDiDestroyDriverInfoList(deviceInfoSet, deviceInfoData, driverType)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/RelationshipTester.java

        Item<T> itemInfo = getItem(groupNumber, itemNumber);
        Item<T> relatedInfo = getItem(groupNumber, relatedItemNumber);
    
        T item = itemInfo.value;
        T related = relatedInfo.value;
        assertWithTemplate(
            "$ITEM must be $RELATIONSHIP to $OTHER",
            itemInfo,
            relatedInfo,
            equivalence.equivalent(item, related));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningConfigurationsIntegrationSpec.groovy

                    meta
                }
    
                signing {
                    ${signingConfiguration()}
                    sign configurations.archives, configurations.meta
                }
    
                ${keyInfo.addAsPropertiesScript()}
                ${getJavadocAndSourceJarsScript("meta")}
            """
    
            when:
            run "buildSignatures"
    
            then:
            executedAndNotSkipped ":signArchives", ":signMeta"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

    class SigningPublicationsIntegrationSpec extends SigningIntegrationSpec {
    
        def "signs single Maven publication"() {
            given:
            buildFile << """
                apply plugin: 'maven-publish'
                ${keyInfo.addAsPropertiesScript()}
    
                publishing {
                    publications {
                        mavenJava(MavenPublication) {
                            from components.java
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. cmd/metrics-v3-cache.go

    	}
    
    	return cachevalue.NewFromFunc(1*time.Minute,
    		cachevalue.Opts{ReturnLastGood: true},
    		loadCPUMetrics)
    }
    
    func newMemoryMetricsCache() *cachevalue.Cache[madmin.MemInfo] {
    	loadMemoryMetrics := func(ctx context.Context) (v madmin.MemInfo, err error) {
    		var types madmin.MetricType = madmin.MetricsMem
    
    		m := collectLocalMetrics(types, collectMetricsOpts{
    			hosts: map[string]struct{}{
    				globalLocalNodeName: {},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/RelationshipTester.java

        Item<T> itemInfo = getItem(groupNumber, itemNumber);
        Item<T> relatedInfo = getItem(groupNumber, relatedItemNumber);
    
        T item = itemInfo.value;
        T related = relatedInfo.value;
        assertWithTemplate(
            "$ITEM must be $RELATIONSHIP to $OTHER",
            itemInfo,
            relatedInfo,
            equivalence.equivalent(item, related));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		r4         = buildReg("R4")
    	)
    	// Common regInfo
    	var (
    		gp01      = regInfo{inputs: nil, outputs: []regMask{gp}}
    		gp11      = regInfo{inputs: []regMask{gpg}, outputs: []regMask{gp}}
    		gp11carry = regInfo{inputs: []regMask{gpg}, outputs: []regMask{gp, 0}}
    		gp11sp    = regInfo{inputs: []regMask{gpspg}, outputs: []regMask{gp}}
    		gp1flags  = regInfo{inputs: []regMask{gpg}}
    		gp1flags1 = regInfo{inputs: []regMask{gp}, outputs: []regMask{gp}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

        CppMultiProjectGeneratorTask() {
            maxWorkers = 6
        }
    
        @Override
        void generateProjectSource(File projectDir, TestProject testProject, Map args) {
            def projectNumber = testProject.subprojectNumber == null ? -1 : testProject.subprojectNumber
            def projectArgs = [projectType: isLastLayer(depInfo.layerSizes, projectNumber) ? 'exe' : 'lib',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
Back to top