Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 245 for Roots (0.13 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyIncrementalCompilationIntegrationTest.groovy

            textFile.text = "text file as root"
    
            expect:
            fails language.compileTaskName
            failure.assertHasCause(
                'Unable to infer source roots. ' +
                    'Incremental Groovy compilation requires the source roots. ' +
                    'Change the configuration of your sources or disable incremental Groovy compilation.')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaSourceIncrementalCompilationIntegrationTest.groovy

            output.contains("Full recompilation is required because the source roots could not be inferred.")
        }
    
        def "does not recompile when a resource changes"() {
            given:
            buildFile << """
                ${language.compileTaskName}.source 'src/main/resources'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_lazy_self.txt

    # a reproducible build list.
    go list -m all
    stdout '^golang.org/issue/46078$'
    
    # 'go mod tidy' should fix this (and not crash).
    go mod tidy
    
    
    # We prune out redundant roots very early on in module loading, and at that
    # point the indirect requirement on example.net/x v0.1.0 appears to be
    # irrelevant. It should be pruned out; when the import of "example.net/x" is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 09 20:06:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemNode.java

         *
         * {@link Optional#empty()} if no information is available.
         */
        Optional<MetadataSnapshot> getSnapshot();
    
        boolean hasDescendants();
    
        /**
         * Returns all the snapshot roots accessible from the node.
         */
        Stream<FileSystemLocationSnapshot> rootSnapshots();
    
        /*
         * Gets a snapshot from the current node with relative path filePath.substring(offset).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt

                .map { it.resolve(sourceFilePath) to it }
                .firstOrNull { it.first.isFile }
                ?: throw IllegalStateException("Source file '$sourceFilePath' not found, searched in source roots:\n  - ${sourceRoots.joinToString("\n  - ")}")
    
        private
        val KtFile.normalizedPath: String?
            get() = virtualFile.canonicalPath?.let { normaliseFileSeparators(it) }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 20 16:37:41 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        /**
         * Obtain an immutable list of compile source roots for the given project and scope.
         * Paths are absolute.
         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
         * @return the list of compile source roots
         */
        @Nonnull
        List<Path> getCompileSourceRoots(@Nonnull Project project, @Nonnull ProjectScope scope);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/verify_options.go

    func NewStaticVerifierFromFile(clientCA string) (VerifyOptionFunc, error) {
    	if len(clientCA) == 0 {
    		return nil, nil
    	}
    
    	// Wrap with an x509 verifier
    	var err error
    	opts := DefaultVerifyOptions()
    	opts.Roots, err = cert.NewPool(clientCA)
    	if err != nil {
    		return nil, fmt.Errorf("error loading certs from  %s: %v", clientCA, err)
    	}
    
    	return StaticVerifierFn(opts), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 07 19:48:24 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

                    connection.newBuild().forTasks('publish')
                        .addProgressListener(events).run()
            }
    
            then:
            def roots = events.operations.findAll { it.parent == null }.collect { it.descriptor.name }
    
            roots == [
                "Run build",
                "Download ${module.rootMetaData.uri}",
                "Download ${module.rootMetaData.sha1.uri}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/certcontroller.go

    )
    
    // initDNSCertsK8SRA will create the certificates using K8S RA.
    // Only called by initIstiodCerts if provider (PILOT_CERT_PROVIDER) has k8s.io prefix
    // and local certificates are not found.
    //
    // The roots are loaded from mesh config.
    func (s *Server) initDNSCertsK8SRA() error {
    	var certChain, keyPEM, caBundle []byte
    	var err error
    	pilotCertProviderName := features.PilotCertProvider
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/SourceSetNativeDependencyResolver.java

            }
    
            private class HeaderFileCollection implements MinimalFileSet, Buildable {
                @Override
                public String getDisplayName() {
                    return "Include roots of " + sourceSet.getName();
                }
    
                @Override
                public Set<File> getFiles() {
                    return sourceSet.getExportedHeaders().getSrcDirs();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top