Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 249 for getDirs (0.12 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/dependencyConfigurationSchema.kt

            registerObjectConversionComponent(component)
        }
    }
    
    
    /**
     * Introduces functions for registering dependencies, such as `implementation(...)`, as member functions of
     * types with getters returning [DependencyCollector] in the schema.
     * Resolves such functions at runtime, if used with object conversion.
     */
    private
    class DependencyCollectorsComponent : AnalysisSchemaComponent, ObjectConversionComponent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/MixInLegacyTypesClassLoaderTest.groovy

            obj.invokeMethod("doSomething", "arg") == "arg"
    
            def newMetaClass = new MetaClassImpl(cl)
            newMetaClass.initialize()
            obj.setMetaClass(newMetaClass) == null
        }
    
        def "add getters for String constants"() {
            given:
            def className = "org.gradle.api.plugins.JavaPluginConvention"
    
            def original = compileJavaToDir(className, """
                package org.gradle.api.plugins;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 22 23:58:47 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

        }
    
        /**
         * The library files to be passed to the linker.
         */
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public ConfigurableFileCollection getLibs() {
            return libs;
        }
    
        public void setLibs(FileCollection libs) {
            this.libs.setFrom(libs);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/ProcessIsolatedCompilerWorkerExecutor.java

            // Compiler daemons do not rely on project cache directory
            return new ForkedWorkerRequirement(daemonForkOptions.getJavaForkOptions().getWorkingDir(), projectCacheDir.getDir(), daemonForkOptions);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

        x.set(123)
    }
    ```
    
    [[redundant_getters]]
    == Redundant getters
    
    This error indicates that a `boolean` property has both a `get` and an `is` getter method.
    This is a problem because both getters can be annotated differently and Gradle cannot know which ones to use.
    
    The solution to this problem is to get rid of one of the getters or to mark one of the getters with link:{javadocPath}/org/gradle/api/tasks/Internal.html[@Internal]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            String scrollId = response.getScrollId();
            try {
                while (scrollId != null) {
                    final SearchHit[] hits = response.getHits().getHits();
                    if (hits.length == 0) {
                        break;
                    }
                    for (final SearchHit hit : hits) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    	for _, p := range svc.Spec.Ports {
    		ports = append(ports, &workloadapi.Port{
    			ServicePort: uint32(p.Port),
    			TargetPort:  uint32(p.TargetPort.IntVal),
    		})
    	}
    
    	addresses, err := slices.MapErr(getVIPs(svc), a.toNetworkAddress)
    	if err != nil {
    		log.Warnf("fail to parse service %v: %v", config.NamespacedName(svc), err)
    		return nil
    	}
    	// handle svc waypoint scenario
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/DependentSourceSet.java

     */
    @Incubating
    @HasInternalProtocol
    public interface DependentSourceSet extends LanguageSourceSet {
        /**
         * The libraries that this source set requires.
         */
        Collection<?> getLibs();
    
        /**
         * Adds a library that this source set requires. This method accepts the following types:
         *
         * <ul>
         *     <li>A {@link org.gradle.nativeplatform.NativeLibrarySpec}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. testing/architecture-test/src/test/java/org/gradle/architecture/test/ServiceScopeAnnotationValidationTest.java

            }
        };
    
        private static final DescribedPredicate<JavaClass> injected_by_getter = new DescribedPredicate<JavaClass>("injected into getters via @Inject") {
            @Override
            public boolean test(JavaClass javaClass) {
                return javaClass
                    .getMethodsWithReturnTypeOfSelf()
                    .stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

                insert(while_op.getOperand(entry.getFirst()), source, func_block);
          } else if (auto if_op = llvm::dyn_cast<TF::IfOp>(op)) {
            for (const auto& entry : AccessedGradients(
                     {if_op.then_function(), if_op.else_function()}, module))
              for (const string& source : entry.getSecond())
                insert(if_op.getOperand(entry.getFirst() + 1), source, func_block);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
Back to top