Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for iccprofile (0.15 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.ibm.minipay",
    				"application/vnd.ibm.modcap",
    				"application/vnd.ibm.rights-management",
    				"application/vnd.ibm.secure-container",
    				"application/vnd.iccprofile",
    				"application/vnd.igloader",
    				"application/vnd.immervision-ivp",
    				"application/vnd.immervision-ivu",
    				"application/vnd.informedcontrol.rms+xml",
    				"application/vnd.informix-visionary",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/interleaved/interleaved.go

    		ir.CurFunc = nil
    	}
    
    	if base.Flag.LowerL != 0 {
    		inlheur.SetupScoreAdjustments()
    	}
    
    	var inlProfile *pgoir.Profile // copy of profile for inlining
    	if base.Debug.PGOInline != 0 {
    		inlProfile = profile
    	}
    
    	// First compute inlinability of all functions in the package.
    	inline.CanInlineFuncs(pkg.Funcs, inlProfile)
    
    	// Now we make a second pass to do devirtualization and inlining of
    	// calls. Order here should not matter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfileServices.java

            registration.addProvider(new ServiceRegistrationProvider() {
                public void configure(ServiceRegistration serviceRegistration, StartParameter startParameter) {
                    if (startParameter.isProfile()) {
                        serviceRegistration.add(BuildProfile.class);
                        serviceRegistration.add(ReportGeneratingProfileListener.class);
                        serviceRegistration.add(ProfileCoordinator.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      
      <mime-type type="application/vnd.iptc.g2.packageitem+xml"/>
      <mime-type type="application/vnd.iptc.g2.planningitem+xml"/>
    
      <mime-type type="application/vnd.ipunplugged.rcprofile">
        <glob pattern="*.rcprofile"/>
      </mime-type>
      <mime-type type="application/vnd.irepository.package+xml">
        <glob pattern="*.irp"/>
      </mime-type>
      <mime-type type="application/vnd.is-xpr">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                }
                buildJvmOpts.add(debug.toDebugArgument());
            }
            if (isProfile()) {
                buildJvmOpts.add(profiler);
            }
    
            if (isSharedDaemons()) {
                buildJvmOpts.add("-Xms256m");
                buildJvmOpts.add("-Xmx1024m");
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * Forces Gradle to consider the build to be interactive
         */
        GradleExecuter withForceInteractive(boolean flag);
    
        boolean isDebug();
    
        boolean isProfile();
    
        /**
         * Starts the launcher JVM (daemon client) in suspended debug mode
         */
        GradleExecuter startLauncherInDebugger(boolean debugLauncher);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/BuildActionSerializer.java

                encoder.writeBoolean(startParameter.isDryRun());
                encoder.writeBoolean(startParameter.isRerunTasks());
                encoder.writeBoolean(startParameter.isProfile());
                encoder.writeBoolean(startParameter.isContinueOnFailure());
                encoder.writeBoolean(startParameter.isOffline());
                encoder.writeBoolean(startParameter.isRefreshDependencies());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         */
        public void setProfile(boolean profile) {
            this.profile = profile;
        }
    
        /**
         * Returns true if a profile report will be generated.
         */
        public boolean isProfile() {
            return profile;
        }
    
        /**
         * Specifies whether the build should continue on task failure. The default is false.
         */
        public boolean isContinueOnFailure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top