Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 556 for sesame (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DelegatingCopySpecInternal.java

        }
    
        @Override
        public CopySpec rename(Closure closure) {
            return getDelegateCopySpec().rename(closure);
        }
    
        @Override
        public CopySpec rename(Transformer<String, String> renamer) {
            return getDelegateCopySpec().rename(renamer);
        }
    
        @Override
        public CopySpec rename(String sourceRegEx, String replaceWith) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/robustio/robustio_flaky.go

    			break
    		}
    		time.Sleep(nextSleep)
    		nextSleep += time.Duration(rand.Int63n(int64(nextSleep)))
    	}
    
    	return bestErr
    }
    
    // rename is like os.Rename, but retries ephemeral errors.
    //
    // On Windows it wraps os.Rename, which (as of 2019-06-04) uses MoveFileEx with
    // MOVEFILE_REPLACE_EXISTING.
    //
    // Windows also provides a different system call, ReplaceFile,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUnavailableExpirationStrategy.java

        public static final String REGISTRY_BECAME_UNREADABLE = "after the daemon registry became unreadable";
        public static final String REGISTRY_ENTRY_UNEXPECTEDLY_LOST = "after the daemon was no longer found in the daemon registry";
        public static final String REGISTRY_BECAME_INACCESSIBLE = "after the daemon registry became inaccessible";
    
        private final Daemon daemon;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/copy/kotlin/build.gradle.kts

    configurations { "runtime" }
    
    // tag::rename-files[]
    tasks.register<Copy>("rename") {
        from("src/main/webapp")
        into(layout.buildDirectory.dir("explodedWar"))
        // Use a regular expression to map the file name
        rename("(.+)-staging(.+)", "$1$2")
        rename("(.+)-staging(.+)".toRegex().pattern, "$1$2")
        // Use a closure to convert all file names to upper case
        rename { fileName: String ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/importC.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package importC
    
    import "C"
    import _ /* ERROR `cannot rename import "C"` */ "C"
    import foo /* ERROR `cannot rename import "C"` */ "C"
    import . /* ERROR `cannot rename import "C"` */ "C"
    
    // Test cases extracted from issue #22090.
    
    import "unsafe"
    
    const _ C.int = 0xff // no error due to invalid constant type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

    configurations { runtime }
    
    // tag::rename-files[]
    tasks.register('rename', Copy) {
        from 'src/main/webapp'
        into layout.buildDirectory.dir('explodedWar')
        // Use a regular expression to map the file name
        rename '(.+)-staging(.+)', '$1$2'
        rename(/(.+)-staging(.+)/, '$1$2')
        // Use a closure to convert all file names to upper case
        rename { String fileName ->
            fileName.toUpperCase()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/robustio/robustio.go

    // but substantially reduce their rate of occurrence in practice.
    package robustio
    
    // Rename is like os.Rename, but on Windows retries errors that may occur if the
    // file is concurrently read or overwritten.
    //
    // (See golang.org/issue/31247 and golang.org/issue/32188.)
    func Rename(oldpath, newpath string) error {
    	return rename(oldpath, newpath)
    }
    
    // ReadFile is like os.ReadFile, but on Windows retries errors that may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/robustio/robustio_other.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !windows && !darwin
    
    package robustio
    
    import (
    	"os"
    )
    
    func rename(oldpath, newpath string) error {
    	return os.Rename(oldpath, newpath)
    }
    
    func readFile(filename string) ([]byte, error) {
    	return os.ReadFile(filename)
    }
    
    func removeAll(path string) error {
    	return os.RemoveAll(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 516 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

         * The closure should return a String object with a new target name. The closure may return null,
         * in which case the original name will be used.
         *
         * @param closure rename closure
         * @return this
         */
        CopyProcessingSpec rename(Closure closure);
    
        /**
         * Renames a source file. The function will be called with a single parameter, the name of the file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/runtime/lock_js.go

    // If we are not already handling an event, then we pause for an async event.
    // If an event handler returned, we resume it and it will pause the execution.
    // beforeIdle either returns the specific goroutine to schedule next or
    // indicates with otherReady that some goroutine became ready.
    // TODO(drchase): need to understand if write barriers are really okay in this context.
    //
    //go:yeswritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top