Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 779 for Directories (0.12 sec)

  1. istioctl/pkg/validate/validate_test.go

    			wantError: false,
    		},
    		{
    			name:      "validate combination of yaml files and directories with valid files",
    			args:      []string{"--filename", validFilenameYAML, "--filename", validTempDirYAML},
    			wantError: false,
    		},
    		{
    			name:      "validate combination of yaml files and directories with valid files and invalid files",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest-diff.go

    	cmd := &cobra.Command{
    		Use:   "diff <file|dir> <file|dir>",
    		Short: "Compare manifests and generate diff",
    		Long: "The diff subcommand compares manifests from two files or directories. The output is a list of\n" +
    			"changed paths with the value changes shown as OLD-VALUE -> NEW-VALUE.\n" +
    			"List order changes are shown as [OLD-INDEX->NEW-INDEX], with ? used where a list item is added or\n" +
    			"removed.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationSourceDirs.java

    import java.io.File;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.Optional;
    
    /**
     * Relativizes paths relative to a set of source directories in order to create a platform-independent mapping
     * from source file to class file.
     */
    @NonNullApi
    public class CompilationSourceDirs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/internal/coverage/pods/pods_test.go

    		for k, df := range p.CounterDataFiles {
    			rv += trim(df)
    			if p.Origins != nil {
    				rv += fmt.Sprintf(" o:%d", p.Origins[k])
    			}
    			rv += "\n"
    		}
    		return rv + "]"
    	}
    
    	// Create a couple of directories.
    	o1 := mkdir("o1", 0777)
    	o2 := mkdir("o2", 0777)
    
    	// Add some random files (not coverage related)
    	mkfile(o1, "blah.txt")
    	mkfile(o1, "something.exe")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 14:00:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/toolchain/path_plan9.go

    // license that can be found in the LICENSE file.
    
    package toolchain
    
    import (
    	"io/fs"
    	"os"
    	"path/filepath"
    
    	"cmd/go/internal/gover"
    )
    
    // pathDirs returns the directories in the system search path.
    func pathDirs() []string {
    	return filepath.SplitList(os.Getenv("path"))
    }
    
    // pathVersion returns the Go version implemented by the file
    // described by de and info in directory dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:15:19 UTC 2023
    - 764 bytes
    - Viewed (0)
  6. platforms/core-runtime/file-temp/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Utilities for working with temporary files & directories"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 859 bytes
    - Viewed (0)
  7. src/cmd/go/internal/search/search.go

    		}
    	}
    }
    
    // MatchDirs sets m.Dirs to a non-nil slice containing all directories that
    // potentially match a local pattern. The pattern must begin with an absolute
    // path, or "./", or "../". On Windows, the pattern may use slash or backslash
    // separators or a mix of both.
    //
    // If any errors may have caused the set of directories to be incomplete,
    // MatchDirs appends those errors to m.Errs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_issue35270.txt

    cd a
    ! go build
    stderr '^ambiguous import: found package image in multiple modules:\s+image\s+.+\s.+image.+\s$'
    
    
    cd ../b
    ! go build -mod=vendor
    stderr '^main.go:4:5: ambiguous import: found package image in multiple directories:\s+.+image\s+.+image\s+$'
    
    cd ../c
    ! go build -mod=vendor
    stderr 'main.go:4:5: package p is not in std'
    
    -- a/go.mod --
    module image
    
    -- a/main.go --
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 768 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/annotations/OutputDirectoriesPropertyAnnotationHandler.java

    public class OutputDirectoriesPropertyAnnotationHandler extends AbstractOutputPropertyAnnotationHandler {
        public OutputDirectoriesPropertyAnnotationHandler() {
            super(OutputDirectories.class, OutputFilePropertyType.DIRECTORIES);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:59 UTC 2022
    - 1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/fileAndDirectoryProperty/groovy/build.gradle

            srcFile.text = "public class ${className} { ... }"
        }
    }
    
    // Create the source generation task
    tasks.register('generate', GenerateSource) {
        // Configure the locations, relative to the project and build directories
        configFile = layout.projectDirectory.file('src/config.txt')
        outputDir = layout.buildDirectory.dir('generated-source')
    }
    
    // Change the build directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top