Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 126 for getMd5 (0.25 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

                populateEclipseProjectTasks(eclipseProject, tasksFactory.getTasks(project));
                populateEclipseProject(eclipseProject, xmlProject);
                populateEclipseProjectJdt(eclipseProject, eclipseModel.getJdt());
            });
    
            for (Project childProject : getChildProjectsForInternalUse(project)) {
                populate(childProject);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            @Override
            public File instrumentedOutput(File workspace) {
                return new File(workspace, "instrumented/" + operation.getId());
            }
    
            private File classesDir(File workspace) {
                return new File(workspace, "classes/" + operation.getId());
            }
    
            private static File metadataDir(File workspace) {
                return new File(workspace, "metadata");
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    			result.Error = ErrProtocolError
    			return
    		}
    
    		// Fetch inline route
    		rc := hcm.GetRouteConfig()
    		if rc == nil {
    			// If not set, fallback to RDS
    			routeName := hcm.GetRds().RouteConfigName
    			result.RouteConfigMatched = routeName
    			rc = xdstest.ExtractRouteConfigurations(sim.Routes)[routeName]
    		}
    		hostHeader := ""
    		if len(input.Headers["Host"]) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/CrawlJob.java

                        if (logger.isDebugEnabled()) {
                            logger.debug("{} is running.", scheduledJob.getId());
                        }
                        counter.incrementAndGet();
                    } else if (logger.isDebugEnabled()) {
                        logger.debug("{} is not running.", scheduledJob.getId());
                    }
                }
            });
            return counter.get();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/converter_gen.cc

        auto desc =
            definit->getDef()->getValueAsString("tflRuntimeTypeDescription");
    
        // Emit a loop to check all operands.
        os << formatv("    for (Value v : top.getODS{0}{1}s({2})) {{\n",
                      // Capitalize the first letter to match the function name
                      valueKind.substr(0, 1).upper(), valueKind.substr(1),
                      static_value.index());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

            // always return true
            return Constants.TRUE;
        }
    
        @Override
        public String getConfigId() {
            return ConfigType.DATA.getConfigId(getId());
        }
    
        public Map<String, String> getHandlerParameterMap() {
            if (handlerParameterMap == null) {
                handlerParameterMap = ParameterUtil.parse(getHandlerParameter());
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

                    compileJava {
                        options.fork = ${mode != IN_PROCESS}
                        ${mode == COMMAND_LINE ? "options.forkOptions.executable = '${TextUtil.escapeString(AvailableJavaHomes.getJdk(JavaVersion.current()).javacExecutable)}'" : ''}
                    }
                """
            }
    
            when:
            succeeds "compileJava"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

        }
    
        public void setWildcards(Set<String> wildcards) {
            this.wildcards = wildcards;
        }
    
        /**
         * Represent the jdk information of the project java sdk.
         */
        public Jdk getJdk() {
            return jdk;
        }
    
        public void setJdk(Jdk jdk) {
            this.jdk = jdk;
        }
    
        /**
         * The vcs used by the project.
         */
        public String getVcs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

            for (Profile rawProfile : settings.getProfiles()) {
                request.addProfile(SettingsUtils.convertFromSettingsProfile(rawProfile));
    
                if (settings.getActiveProfiles().contains(rawProfile.getId())) {
                    List<Repository> remoteRepositories = rawProfile.getRepositories();
                    for (Repository remoteRepository : remoteRepositories) {
                        try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTest.groovy

                }
            }
            List<PluginDeclaration> declarations = []
            if (id) {
                declarations << Stub(PluginDeclaration) {
                    getName() >> id
                    getId() >> id
                }
            }
            Provider<Collection<PluginDeclaration>> declarationsProvider = Mock(Provider) {
                get() >> declarations
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top