Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rootSpec (0.11 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

                        }
                    }
                }
                tasks.named(gradle7.processResourcesTaskName) {
                    def copyPluginDescriptors = rootSpec.addChild()
                    copyPluginDescriptors.into('META-INF/gradle-plugins')
                    copyPluginDescriptors.from(tasks.pluginDescriptors)
                }
                // ==
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                    children.size() == 1
                    children[0].path == "Other.java"
                }
            }
    
            def bJar = snapshotResults(":b:jar").inputFileProperties
            with(bJar["rootSpec\$1"]) {
                hash != null
                roots.size() == 1
                with(roots[0]) {
                    path == file("b/build/classes/java/main").absolutePath
                    children.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. pkg/spiffe/spiffe.go

    		block, rest = pem.Decode(rest)
    	}
    
    	rootCAs, err := x509.ParseCertificates(blockBytes)
    	if err != nil {
    		spiffeLog.Errorf("parse certificate from rootPEM got error: %v", err)
    		return fmt.Errorf("parse certificate from rootPEM got error: %v", err)
    	}
    
    	v.AddMapping(trustDomain, rootCAs)
    	return nil
    }
    
    // AddMappings merges a trust domain to certs map to the certPools map.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top