Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for myfile (0.14 sec)

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

    				"manifests/kube-apiserver.yaml",
    				"pki/ca.pem",
    				kubeadmconstants.AdminKubeConfigFileName,
    				kubeadmconstants.KubeletKubeConfigFileName,
    				".mydir/.myfile",
    			},
    			verifyExists: []string{
    				"manifests",
    				"pki",
    				".mydir",
    				".mydir/.myfile",
    			},
    		},
    		"no-op reset": {
    			verifyNotExists: []string{
    				"pki",
    				"manifests",
    			},
    		},
    		"not a directory": {
    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. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

         *
         * @see KaResolveExtensionFile
         */
        public abstract fun getFileName(): String
    
        /**
         * [FqName] of the package specified in the file
         *
         * The operation might be called regularly, so the [getFilePackageName] should work fast and avoid building the whole file text.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/net/http/request_test.go

    			Error(rw, err.Error(), StatusBadRequest)
    			return
    		}
    	})).ts
    	fBuf := new(bytes.Buffer)
    	mw := multipart.NewWriter(fBuf)
    	mf, err := mw.CreateFormFile("file", "myfile.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if _, err := mf.Write(bytes.Repeat([]byte("abc"), payloadSize)); err != nil {
    		t.Fatal(err)
    	}
    	if err := mw.Close(); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

     * resources are files and directories however an <code>SmbFile</code>
     * may also refer to servers and workgroups. If the resource is a file or
     * directory the methods of <code>SmbFile</code> follow the behavior of
     * the well known {@link java.io.File} class. One fundamental difference
     * is the usage of a URL scheme [1] to specify the target file or
     * directory. SmbFile URLs have the following syntax:
     *
     * <blockquote>
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            configurationCache.assertStateStored()
        }
    
        def "file contents #usage used as build logic input"() {
    
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildKotlinFile """
                val ciFile = layout.projectDirectory.file("ci")
                val isCi = providers.fileContents(ciFile)
                if (isCi.$expression) {
                    tasks.register("run") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    }
    
    // rotate checks to see whether the file f needs to be rotated,
    // meaning to start a new counter file with a different date in the name.
    // rotate is also used to open the file initially, meaning f.current can be nil.
    // In general rotate should be called just once for each file.
    // rotate will arrange a timer to call itself again when necessary.
    func (f *file) rotate() {
    	expire, cleanup := f.rotate1()
    	cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    	certFile, keyFile, caFile := configureTLSCerts(t)
    	defer os.RemoveAll(filepath.Dir(certFile))
    
    	// override server config to be TLS-enabled
    	etcdConfig := testserver.NewTestConfig(t)
    	etcdConfig.ClientTLSInfo = transport.TLSInfo{
    		CertFile:      certFile,
    		KeyFile:       keyFile,
    		TrustedCAFile: caFile,
    	}
    	for i := range etcdConfig.ListenClientUrls {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectLayoutIntegrationTest.groovy

                    doLast {
                        println(file.get().asFile.text)
                    }
                }
            """
    
            when:
            configurationCacheRun 'answer'
    
            then:
            '42' == file('build/dir/answer.txt').text
            outputContains '42'
    
            where:
            desc   | provider
            'dir'  | 'dir(computedDirName).map { it.file("answer.txt") }'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            given:
            project.pluginManager.apply(JavaPlugin)
            new TestFile(project.file("src/main/java/File.java")) << "foo"
            new TestFile(project.file("src/main/resources/thing.txt")) << "foo"
            new TestFile(project.file("src/test/java/File.java")) << "foo"
            new TestFile(project.file("src/test/resources/thing.txt")) << "foo"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            file("files/dir1/file1.txt") << ""
            file("files/dir2/file2.txt") << ""
    
            and:
            buildFile """
                def files = files("files/file0.txt", "files/dir1", "files/dir2", "files/dir3").elements.map {
                    it.findAll { file ->
                        file.asFile.isDirectory()
                    }
                }
                tasks.register("sync", Sync) {
                    from files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top