Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 158 for recreate (0.23 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultFlavorContainer.java

            super(Flavor.class, instantiator, collectionCallbackActionDecorator);
        }
    
        @Override
        protected Flavor doCreate(String name) {
            return getInstantiator().newInstance(DefaultFlavor.class, name);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/tempfile.go

    		switch f, err := os.OpenFile(filepath.Join(dir, fmt.Sprintf("%s%03d%s", prefix, index, suffix)), os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666); {
    		case err == nil:
    			return f, nil
    		case !os.IsExist(err):
    			return nil, err
    		}
    	}
    	// Give up
    	return nil, fmt.Errorf("could not create file of the form %s%03d%s", prefix, 1, suffix)
    }
    
    var tempFiles []string
    var tempFilesMu = sync.Mutex{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. platforms/software/plugins-distribution/src/main/java/org/gradle/api/distribution/internal/DefaultDistributionContainer.java

            super(type, instantiator, callbackDecorator);
            this.objectFactory = objectFactory;
            this.fileOperations = fileOperations;
        }
    
        @Override
        protected Distribution doCreate(String name) {
            return objectFactory.newInstance(DefaultDistribution.class, name, fileOperations.copySpec());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 20:49:58 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. internal/ioutil/append-file_nix.go

    package ioutil
    
    import (
    	"io"
    	"os"
    )
    
    // AppendFile - appends the file "src" to the file "dst"
    func AppendFile(dst string, src string, osync bool) error {
    	flags := os.O_WRONLY | os.O_APPEND | os.O_CREATE
    	if osync {
    		flags |= os.O_SYNC
    	}
    	appendFile, err := os.OpenFile(dst, flags, 0o666)
    	if err != nil {
    		return err
    	}
    	defer appendFile.Close()
    
    	srcFile, err := os.Open(src)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/copy.go

    	if err != nil {
    		return err
    	}
    
    	sourceFile, err := os.Open(src)
    	if err != nil {
    		return err
    	}
    	defer func() {
    		_ = sourceFile.Close()
    	}()
    
    	destFile, err := os.OpenFile(dest, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, sourceFileInfo.Mode())
    	if err != nil {
    		return err
    	}
    	defer func() {
    		_ = destFile.Close()
    	}()
    
    	_, err = io.Copy(destFile, sourceFile)
    
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 01:42:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. releasenotes/notes/revision-install-create-istiod-service.yaml

    Sam Naser <******@****.***> 1620416493 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 07 19:41:33 UTC 2021
    - 453 bytes
    - Viewed (0)
  7. internal/ioutil/append-file_windows.go

    	"github.com/minio/minio/internal/lock"
    )
    
    // AppendFile - appends the file "src" to the file "dst"
    func AppendFile(dst string, src string, osync bool) error {
    	appendFile, err := lock.Open(dst, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0o666)
    	if err != nil {
    		return err
    	}
    	defer appendFile.Close()
    
    	srcFile, err := lock.Open(src, os.O_RDONLY, 0o666)
    	if err != nil {
    		return err
    	}
    	defer srcFile.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/AntBuilderLoggingIntegrationTest.groovy

            and:
            outputDoesNotContain("DEBUG message")
            outputDoesNotContain("VERBOSE message")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "can decrease verbosity of Ant logging" () {
            buildFile << """
                ant.lifecycleLogLevel = "ERROR"
            """
    
            when:
            succeeds("antTest")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltLibraries.java

        }
    
        @Override
        public void content(Action<? super RepositoryContentDescriptor> configureAction) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        protected PrebuiltLibrary doCreate(String name) {
            return getInstantiator().newInstance(DefaultPrebuiltLibrary.class, name, objectFactory, domainObjectCollectionFactory);
        }
    
        @Override
        public PrebuiltLibrary resolveLibrary(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-create-syscall-with-p.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 624 bytes
    - Viewed (0)
Back to top