Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 576 for FILE (0.04 sec)

  1. src/net/http/fs_test.go

    	tests := []struct {
    		req        string
    		wantStatus int
    	}{
    		{"/testdata/file", 200},
    		{"/../file", 400},
    		{"/..", 400},
    		{"/../", 400},
    		{"/../foo", 400},
    		{"/..\\foo", 400},
    		{"/file/a", 200},
    		{"/file/a..", 200},
    		{"/file/a/..", 400},
    		{"/file/a\\..", 400},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

                                     TF_Status* status);
    
      /// Creates an object to write to a file with the specified `path`.
      ///
      /// If the file already exists, it is deleted and recreated. The `file` object
      /// must only be accessed by one thread at a time.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if `file` was updated.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        private File projectDir;
        private File settingsFile;
        private boolean ignoreMissingSettingsFile;
        private boolean ignoreCleanupAssertions;
        private PipedOutputStream stdinPipe;
        private String defaultCharacterEncoding;
        private Locale defaultLocale;
        private int daemonIdleTimeoutSecs = 120;
        private boolean requireDaemon;
        private File daemonBaseDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    		// Trampoline don't have a FILE so there are considered
    		// in the current file.
    		// Same goes for runtime.text.X symbols.
    	} else if ldr.SymPkg(x) == "" { // Undefined global symbol
    		// If this happens, the algorithm must be redone.
    		if currSymSrcFile.name != "" {
    			Exitf("undefined global symbol found inside another file")
    		}
    	} else {
    		// Current file has changed. New C_FILE, C_DWARF, etc must be generated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. .teamcity/test-buckets.json

    					"test-kit",
    					"ide",
    					"file-collections",
    					"persistent-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"kotlin-dsl-tooling-builders",
    					"execution-e2e-tests",
    					"declarative-dsl-provider",
    					"platform-native",
    					"version-control",
    					"file-watching",
    					"jacoco",
    					"ivy",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | `File`*
    | A single output file (not directory)
    
    | `@link:{javadocPath}/org/gradle/api/tasks/OutputDirectory.html[OutputDirectory]`
    | `File`*
    | A single output directory (not file)
    
    | `@link:{javadocPath}/org/gradle/api/tasks/OutputFiles.html[OutputFiles]`
    | `Map<String, File>`+++**+++ or `Iterable<File>`+++*+++
    | An iterable or map of output files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        public boolean hasParent() {
            return getParent() != null;
        }
    
        public File getFile() {
            return file;
        }
    
        public void setFile(File file) {
            this.file = file;
            this.basedir = file != null ? file.getParentFile() : null;
        }
    
        /**
         * Sets project {@code file} without changing project {@code basedir}.
         *
         * @since 3.2.4
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            outputContains("Expected a signature list in ${artifactFile}, but got invalid file. Skipping this signature.")
            assertConfigCacheDiscarded()
        }
    
        private static void tamperWithFile(File file) {
            file.bytes = [0, 1, 2, 3] + file.readBytes().toList() as byte[]
        }
    
        private void writeLocalKeyring(SimpleKeyRing keyring, File target, Boolean valid) {
            if (valid == null) {
                return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	if ctxt.Debugvlog > 1 {
    		ctxt.Logf("ldobj: %s (%s)\n", lib.File, pkg)
    	}
    	f, err := bio.Open(lib.File)
    	if err != nil {
    		Exitf("cannot open file %s: %v", lib.File, err)
    	}
    	defer f.Close()
    	defer func() {
    		if pkg == "main" && !lib.Main {
    			Exitf("%s: not package main", lib.File)
    		}
    	}()
    
    	for i := 0; i < len(ARMAG); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            type = (incremental ? "incremental" : "non-incremental")
        }
    
        def "re-runs incremental transform when input artifact file changes from file to missing"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            setupBuildWithColorTransform()
            buildFile << """
                project(':a') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
Back to top