Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Classes (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            file("lib/dir1.classes").file("child").createFile()
    
            when:
            succeeds ":util:resolve", ":app:resolve"
    
            then:
            output.count("files: [dir1.classes.dir]") == 2
    
            output.count("Transformed") == 1
            isTransformed("dir1.classes", "dir1.classes.dir")
            def outputDir1 = outputDir("dir1.classes", "dir1.classes.dir").assertIsDir()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	}
    
    	meta[xhttp.AmzObjectTagging] = oi.UserTags
    	meta[xhttp.AmzTagDirective] = "REPLACE"
    
    	if sc == "" {
    		sc = oi.StorageClass
    	}
    	// drop non standard storage classes for tiering from replication
    	if sc != "" && (sc == storageclass.RRS || sc == storageclass.STANDARD) {
    		meta[xhttp.AmzStorageClass] = sc
    	}
    
    	meta[xhttp.MinIOSourceETag] = oi.ETag
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/net/http/server.go

    //
    // Normally a wildcard matches only a single path segment,
    // ending at the next literal slash (not %2F) in the request URL.
    // But if the "..." is present, then the wildcard matches the remainder of the URL path, including slashes.
    // (Therefore it is invalid for a "..." wildcard to appear anywhere but at the end of a pattern.)
    // The match for a wildcard can be obtained by calling [Request.PathValue] with the wildcard's name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		return nil
    	}
    
    	// Note that we use path, not path/filepath even though a domain socket path is a file path.  We don't want the
    	// Pilot output to depend on which OS Pilot is run on, so we always use Unix-style forward slashes.
    	if !path.IsAbs(addr) || strings.HasSuffix(addr, "/") {
    		return fmt.Errorf("%s is not an absolute path to a file", addr)
    	}
    	return nil
    }
    
    // ValidateGateway checks gateway specifications
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		// relative to the current path
    		{"foobar.com/baz", "/qux/foobar.com/baz"},
    		// relative to the current path (+ going upwards)
    		{"../quux/foobar.com/baz", "/quux/foobar.com/baz"},
    		// incorrect number of slashes
    		{"///foobar.com/baz", "/foobar.com/baz"},
    
    		// Verifies we don't path.Clean() on the wrong parts in redirects:
    		{"/foo?next=http://bar.com/", "/foo?next=http://bar.com/"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top