Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for myDir (0.04 sec)

  1. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    				"manifests",
    				"pki",
    				".mydir",
    			},
    			setupFiles: []string{
    				"manifests/etcd.yaml",
    				"manifests/kube-apiserver.yaml",
    				"pki/ca.pem",
    				kubeadmconstants.AdminKubeConfigFileName,
    				kubeadmconstants.KubeletKubeConfigFileName,
    				".mydir/.myfile",
    			},
    			verifyExists: []string{
    				"manifests",
    				"pki",
    				".mydir",
    				".mydir/.myfile",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. cmd/os-readdir_test.go

    	dir := t.TempDir()
    	if err := os.MkdirAll(filepath.Join(dir, "mydir"), 0o777); err != nil {
    		t.Fatalf("Unable to create prefix directory \"mydir\", %s", err)
    	}
    	entries := []string{"mydir/"}
    	for i := 0; i < 10; i++ {
    		name := fmt.Sprintf("file-%d", i)
    		if err := os.WriteFile(filepath.Join(dir, "mydir", name), []byte{}, os.ModePerm); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vendormod.txt

    	mysite/myname/mypkg v1.0.0 => ./mypkg
    	w v1.0.0 => ./w
    	x v1.0.0 => ./x
    	y v1.0.0 => ./y
    	z v1.0.0 => ./z
    )
    -- mypkg/go.mod --
    module me
    -- mypkg/mydir/d.go --
    package mydir
    -- subdir/v1_test.go --
    package m
    
    import _ "mysite/myname/mypkg/mydir"
    -- testdata1.go --
    package m
    
    import _ "a"
    -- testdata2.go --
    package m
    
    import _ "a/foo/bar/b"
    import _ "a/foo/bar/c"
    -- v1.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

        @Rule
        final TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        def jarFile = tmpDir.file("mydir/jarfile.jar").createFile()
    
        def "creates manifest classpath with relative urls"() {
            when:
            def classpathFiles = [tmpDir.file('mydir/jar1.jar'), tmpDir.file('mydir/nested/jar2.jar')]
    
            then:
            ManifestUtil.createManifestClasspath(jarFile, classpathFiles) == "jar1.jar nested/jar2.jar";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_enabled.txt

    cd $GOPATH/foo/bar/baz
    go env GOMOD
    ! stdout .+
    
    # GO111MODULE=auto should ignore and warn about /tmp/go.mod
    env GO111MODULE=auto
    cp $GOPATH/src/x/y/z/go.mod $WORK/tmp/go.mod
    mkdir $WORK/tmp/mydir
    cd $WORK/tmp/mydir
    go env GOMOD
    ! stdout .+
    stderr '^go: warning: ignoring go.mod in system temp root '
    
    -- $GOPATH/src/x/y/z/go.mod --
    module x/y/z
    -- $GOPATH/src/x/y/z/w/w.txt --
    -- $GOPATH/foo/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 01:30:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor.txt

    -- appengine.go --
    // +build appengine
    
    package m
    
    import _ "appengine"
    import _ "appengine/datastore"
    -- mypkg/go.mod --
    module me
    -- mypkg/mydir/d.go --
    package mydir
    -- subdir/v1_test.go --
    package m
    
    import _ "mysite/myname/mypkg/mydir"
    -- testdata1.go --
    package m
    
    import _ "a"
    -- testdata2.go --
    package m
    
    import _ "a/foo/bar/c"
    -- v1.go --
    package m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

            elementType         | elementName | elementInitialization                                              | elementRead
            'Directory'         | 'myField'   | "Directory myField = project.layout.projectDirectory.dir('myDir')" | 'myField.getAsFile().absolutePath'
            "DirectoryProperty" | 'myProp'    | "abstract DirectoryProperty getMyProp()"                           | "myProp.getAsFile().get().absolutePath"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/net/http/fs.go

    		// serveFile. Reject the request under the assumption that happened
    		// here and ".." may not be wanted.
    		// Note that name might not contain "..", for example if code (still
    		// incorrectly) used filepath.Join(myDir, r.URL.Path).
    		serveError(w, "invalid URL path", StatusBadRequest)
    		return
    	}
    	dir, file := filepath.Split(name)
    	serveFile(w, r, Dir(dir), file, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        def "task is not up-to-date when the implementation of a named #actionMethodName action changes"() {
            buildScript """
                tasks.register('myTask') {
                    outputs.dir(layout.buildDirectory.dir('myDir'))
                    ${actionMethodName}('myAction') { println("printing from action") }
                }
            """
    
            when:
            run ':myTask'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top