Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 912 for regular (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectTaskLister.java

     */
    
    package org.gradle.api.internal.project;
    
    import org.gradle.api.Project;
    import org.gradle.api.Task;
    
    import java.util.Collection;
    
    /**
     * Service to provide all tasks in a project including both regular tasks,
     * and implicit tasks.
     */
    public interface ProjectTaskLister {
        Collection<Task> listProjectTasks(Project project);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 950 bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UnsupportedWithConfigurationCache.java

    @ExtensionAnnotation(UnsupportedWithConfigurationCacheExtension.class)
    public @interface UnsupportedWithConfigurationCache {
    
        String because() default "";
    
        String[] bottomSpecs() default {};
    
        /**
         * Declare regular expressions matching the iteration name.
         * Defaults to an empty array, meaning this annotation applies to all iterations of the annotated feature.
         */
        String[] iterationMatchers() default {};
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            allowFileSystemAccess(false)
            def subDir = someDir.file("sub")
            snapshot = read(subDir)
            then:
            assertIsDirectorySnapshot(snapshot, subDir)
        }
    
        def "invalidate regular file"() {
            def parentDir = temporaryFolder.file("in/some")
            def someFile = parentDir.file("directory/somefile.txt").createFile()
            when:
            allowFileSystemAccess(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/cors_test.go

    			allowed:        true,
    		},
    		{
    			// CVE-2022-1996: regular expression 'example.com' matches
    			// 'example.com.hacker.org' because it does not pin to the start
    			// and end of the host.
    			// The CVE should not occur in a real kubernetes cluster since we
    			// validate the regular expression specified in --cors-allowed-origins
    			// to ensure that it pins to the start and end of the host name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 20 19:15:51 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. pkg/volume/util/volumepathhandler/volume_path_handler_unsupported.go

    limitations under the License.
    */
    
    package volumepathhandler
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // AttachFileDevice takes a path to a regular file and makes it available as an
    // attached block device.
    func (v VolumePathHandler) AttachFileDevice(path string) (string, error) {
    	return "", fmt.Errorf("AttachFileDevice not supported for this build.")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. test/fixedbugs/issue17318.go

    // This test is likely to become stale because the leak depends
    // on a spurious-escape bug -- return an interface as a named
    // output parameter appears to cause the called closure to escape,
    // where returning it as a regular type does not.
    
    package main
    
    import (
    	"fmt"
    )
    
    type closure func(i, j int) ent
    
    type ent int
    
    func (e ent) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 16 15:30:51 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_flag.txt

    [short] skip
    
    go test flag_test.go -v -args -v=7 # Two distinct -v flags
    go test -v flag_test.go -args -v=7 # Two distinct -v flags
    
    # Using a custom flag mixed with regular 'go test' flags should be OK.
    go test -count=1 -custom -args -v=7
    
    # However, it should be an error to use custom flags when -c is used,
    # since we know for sure that no test binary will run at all.
    ! go test -c -custom
    stderr '^go: unknown flag -custom cannot be used with -c$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 01 08:31:45 UTC 2022
    - 893 bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemSnapshotHierarchyVisitor.java

        /**
         * Called before visiting the contents of a directory.
         */
        default void enterDirectory(DirectorySnapshot directorySnapshot) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
         * @return how to continue visiting the rest of the snapshot hierarchy.
         */
        SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_GOTMPDIR.txt

    [!GOOS:windows] env GOTMPDIR=$WORK/my-favorite-tmpdir
    [GOOS:windows] env GOTMPDIR=$WORK\my-favorite-tmpdir
    mkdir $GOTMPDIR
    go build -x hello.go
    stderr ^WORK=.*my-favorite-tmpdir
    
    # Make GOTMPDIR a regular file. This prevents the creation of work directories,
    # so we can check that certain commands don't create them.
    # This simulates running on a full disk or a read-only volume.
    rm $GOTMPDIR
    cp hello.go $GOTMPDIR # any file will do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingState.java

         * If {@code true}, each locked dependency is added as a strict constraint,
         * and the resolution result must exactly match the set of locked dependencies.
         *
         * If {@code false}, each locked dependency is added a regular (lenient) constraint,
         * and the resolution result is not verified against the set of locked dependencies.
         *
         * @return {@code true} if lock state was found, {@code false} otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top