Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,250 for clean (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

                relocatedApiClassName = descriptorApiClass;
            }
    
            byte[] bytes = entry.getContent();
            String content = new String(bytes, Charsets.UTF_8).replaceAll("(?m)^#.*", "").trim(); // clean up comments and new lines
    
            String[] descriptorImplClasses = periodsToSlashes(separateLines(content));
            String[] relocatedImplClassNames = maybeRelocateResources(descriptorImplClasses);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. callbacks/preload.go

    			return err
    		}
    	}
    
    	fieldValues := make([]interface{}, len(relForeignFields))
    
    	// clean up old values before preloading
    	switch reflectValue.Kind() {
    	case reflect.Struct:
    		switch rel.Type {
    		case schema.HasMany, schema.Many2Many:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/TestThread.java

      // so there is no object state put at risk by stopping the threads abruptly. In some cases a test
      // may put a thread into an uninterruptible operation intentionally, so there is no other way to
      // clean up these threads.
      @SuppressWarnings("deprecation")
      @Override
      public void tearDown() throws Exception {
        stop();
        join();
    
        if (uncaughtThrowable != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

                            // Run the build
                            launcher.run();
                            System.out.println("Build was successful");
                        } finally {
                            // Clean up
                            System.out.println("Cleaning up after the build");
                            connection.close();
                            System.out.println("Connection is closed.");
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/cache.go

    	if file == "" {
    		return nil
    	}
    
    	if info.Origin != nil {
    		// Clean the origin information, which might have too many
    		// validation criteria, for example if we are saving the result of
    		// m@master as m@pseudo-version.
    		clean := *info
    		info = &clean
    		o := *info.Origin
    		info.Origin = &o
    
    		// Tags never matter if you are starting with a semver version,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/PrecompiledGroovyPluginsIntegrationTest.groovy

                logger.lifecycle "foo script plugin applied"
            """
    
            buildFile << """
                plugins {
                    id 'foo'
                }
            """
    
            when:
            succeeds("clean")
    
            then:
            outputContains("foo script plugin applied")
        }
    
        def "can apply a precompiled script plugin by id to a multi-project build from root"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/fetch.go

    	_, dirErr := DownloadDir(ctx, mod)
    	if dirErr == nil {
    		return dir, nil
    	}
    	_, dirExists := dirErr.(*DownloadDirPartialError)
    
    	// Clean up any remaining temporary directories created by old versions
    	// (before 1.16), as well as partially extracted directories (indicated by
    	// DownloadDirPartialError, usually because of a .partial file). This is only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            resultDebug.assertHasErrorOutput("broken.cpp(1): error C2143: syntax error: missing ';' before '!'")
        }
    
        @Requires(IntegTestPreconditions.HasMsBuild)
        @ToBeFixedForConfigurationCache
        def "can clean from visual studio"() {
            useMsbuildTool()
            def debugBinary = executable('build/exe/main/win32/debug/main')
    
            given:
            app.writeSources(file("src/main"))
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  9. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    c:\home\Brett\cvs\maven-2\maven-components-release\maven-plugin-api\src\test\resources c:\home\Brett\cvs\maven-2\maven-components-release\maven-plugin-api\target maven-plugin-api-2.0 maven-release-plugin https://svn.apache.org/repos/asf/maven/components/tags maven-clean-plugin 2.0-rc2-SNAPSHOT maven-compiler-plugin 2.0-beta-2-SNAPSHOT maven-deploy-plugin 2.0-beta-1 true true maven-install-plugin 2.0-beta-2-SNAPSHOT maven-jar-plugin 2.0-rc2-SNAPSHOT maven-javadoc-plugin 2.0-beta-2-SNAPSHOT attach-javadocs jar true...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 9.9K bytes
    - Viewed (0)
  10. pkg/volume/configmap/configmap.go

    	if err := wrapped.SetUpAt(dir, mounterArgs); err != nil {
    		return err
    	}
    	if err := volumeutil.MakeNestedMountpoints(b.volName, dir, b.pod); err != nil {
    		return err
    	}
    
    	defer func() {
    		// Clean up directories if setup fails
    		if !setupSuccess {
    			unmounter, unmountCreateErr := b.plugin.NewUnmounter(b.volName, b.podUID)
    			if unmountCreateErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top