Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 127 for sourceDir (0.12 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

            ConventionMapping conventionMapping = ((IConventionAware) module).getConventionMapping();
            Set<File> sourceDirs = new LinkedHashSet<>();
            conventionMapping.map("sourceDirs", new Callable<Set<File>>() {
                @Override
                public Set<File> call() {
                    return sourceDirs;
                }
            });
            conventionMapping.map("contentRoot", new Callable<File>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProjectTest.groovy

            def implicitHeaderFiles = implicitHeaders as Set
            def sourceSet = Mock(HeaderExportingSourceSet)
            def sourceDirs = Mock(SourceDirectorySet)
            1 * sourceSet.exportedHeaders >> sourceDirs
            1 * sourceDirs.files >> exportedHeaderFiles
            def implicitHeaderSet = Mock(SourceDirectorySet)
            1 * sourceSet.implicitHeaders >> implicitHeaderSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/init_windows.go

    func (o *Options) addOSFlags(fs *pflag.FlagSet) {
    	fs.BoolVar(&o.WindowsService, "windows-service", o.WindowsService, "Enable Windows Service Control Manager API integration")
    	fs.StringVar(&o.config.Winkernel.SourceVip, "source-vip", o.config.Winkernel.SourceVip, "The IP address of the source VIP for non-DSR.")
    	fs.StringVar(&o.config.Winkernel.NetworkName, "network-name", o.config.Winkernel.NetworkName, "The name of the cluster network.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:41:55 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/DownloadedUriTextResource.java

        private final String contentType;
        private final File downloadedResource;
    
        public DownloadedUriTextResource(String description, URI sourceUri, String contentType, File downloadedResource, RelativeFilePathResolver resolver) {
            super(description, sourceUri, resolver);
            this.contentType = contentType;
            this.downloadedResource = downloadedResource;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

         * Non-existing resource directory declarations lead to errors when project is imported into Eclipse.
         */
        public Set<File> getSourceDirs() {
            return sourceDirs;
        }
    
        public void setSourceDirs(Set<File> sourceDirs) {
            this.sourceDirs = sourceDirs;
        }
    
        /**
         * The configurations whose files are to be marked to be deployed with a deploy path of '/'.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r50/ToolingApiIdeaModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.idea.IdeaContentRoot
    import org.gradle.tooling.model.idea.IdeaModule
    import org.gradle.tooling.model.idea.IdeaProject
    
    /**
     * NOTE: Starting with Gradle 5.0 the contract of IdeaModule#sourceDirs and IdeaModule#testSourceDirs changes in
     * a way that the resource directories are excluded.
     */
    @TargetGradleVersion(">=5.0")
    class ToolingApiIdeaModelCrossVersionSpec extends ToolingApiSpecification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/helpers_test.go

    		{
    			name:     "no match",
    			sourceIP: "10.0.0.2",
    			destIP:   "10.0.0.3",
    			destPort: 80,
    			output:   "",
    		},
    		{
    			name:     "single endpoint",
    			sourceIP: "10.0.0.2",
    			destIP:   "172.30.0.41",
    			destPort: 80,
    			output:   "10.180.0.1:80",
    		},
    		{
    			name:     "multiple endpoints",
    			sourceIP: "10.0.0.2",
    			destIP:   "172.30.0.44",
    			destPort: 80,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/NativeBinarySpecTest.groovy

            def lib2 = new Object()
            def dep2 = Stub(NativeDependencySet)
            def sourceLib = new Object()
            def sourceDep = Stub(NativeDependencySet)
    
            when:
            binary.lib(lib1)
            def sourceSet = Stub(DependentSourceSet) {
                getLibs() >> [sourceLib]
            }
            binary.inputs.add sourceSet
            binary.lib(lib2)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

                        public String call() throws Exception {
                            return "../";
                        }
                    });
                    ((IConventionAware) component).getConventionMapping().map("sourceDirs", new Callable<Set<File>>() {
                        @Override
                        public Set<File> call() throws Exception {
                            return getMainSourceDirs(project);
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.cc

    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/SourceMgr.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/Diagnostics.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top