Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,085 for Trailing (0.34 sec)

  1. src/compress/flate/inflate.go

    // zlib. There is a lookup table of a fixed bit width (huffmanChunkBits),
    // For codes smaller than the table width, there are multiple entries
    // (each combination of trailing bits has the same value). For codes
    // larger than the table width, the table contains a link to an overflow
    // table. The width of each entry in the link table is the maximum code
    // size minus the chunk width.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. cmd/object-api-putobject_test.go

    		// Put an empty object with a trailing slash
    		30: {bucketName: bucket, objName: "emptydir/", inputData: []byte{}, expectedMd5: getMD5Hash([]byte{})},
    		// Put an object inside the empty directory
    		31: {bucketName: bucket, objName: "emptydir/" + object, inputData: data, inputDataSize: int64(len(data)), expectedMd5: getMD5Hash(data)},
    		// Put the empty object with a trailing slash again (refer to Test case 30), this needs to succeed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/mime/mediatype.go

    		v = strings.TrimLeftFunc(v, unicode.IsSpace)
    		if len(v) == 0 {
    			break
    		}
    		key, value, rest := consumeMediaParam(v)
    		if key == "" {
    			if strings.TrimSpace(rest) == ";" {
    				// Ignore trailing semicolons.
    				// Not an error.
    				break
    			}
    			// Parse error.
    			return mediatype, nil, ErrInvalidMediaParameter
    		}
    
    		pmap := params
    		if baseName, _, ok := strings.Cut(key, "*"); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            text = text.replaceAll(pattern, 'GRADLE_USER_HOME/@CACHE@/$1/@SHA1@/')
    
            //remove trailing slashes for windows paths
            text = text.replaceAll("jar:file:/", 'jar:file:')
            return text
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

      //
      // `axis` should be a valid dimension in `shape`.
      static int64_t StrideForAxis(ArrayRef<int64_t> shape, int64_t axis) {
        int64_t stride = 1;  // Start with the trailing dimension.
        for (int64_t dim = shape.size() - 1; dim > axis; --dim) {
          stride *= shape[dim];
        }
        return stride;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/syscall/syscall_plan9.go

    func Mkdir(path string, mode uint32) (err error) {
    	// If path exists and is not a directory, Create will fail silently.
    	// Work around this by rejecting Mkdir if path exists.
    	statbuf := make([]byte, bitSize16)
    	// Remove any trailing slashes from path, otherwise the Stat will
    	// fail with ENOTDIR.
    	n := len(path)
    	for n > 1 && path[n-1] == '/' {
    		n--
    	}
    	_, err = Stat(path[0:n], statbuf)
    	if err == nil {
    		return EEXIST
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/time/format.go

    	stdNumColonSecondsTZ                           // "-07:00:00"
    	stdFracSecond0                                 // ".0", ".00", ... , trailing zeros included
    	stdFracSecond9                                 // ".9", ".99", ..., trailing zeros omitted
    
    	stdNeedDate       = 1 << 8             // need month, day, year
    	stdNeedClock      = 2 << 8             // need hour, minute, second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

    Use Maven Central
    
    Alternatively:
    - Could use Google's Maven repository
    - Or a local mirror
    
    """)
    
            when:
            builder.create(target).generate()
    
            then:
            //mind the trailing whitespace at the empty commented line
            assertOutputFile("""$COMMON_START
     */
    
    repositories {
        // Use Maven Central
        // ${""}
        // Alternatively:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys.go

    func cleanGlobPath(path string) string {
    	switch path {
    	case "":
    		return "."
    	case string(filepath.Separator):
    		// do nothing to the path
    		return path
    	default:
    		return path[0 : len(path)-1] // chop off trailing separator
    	}
    }
    
    func volumeNameLen(path string) int {
    	isSlash := func(c uint8) bool {
    		return c == '\\' || c == '/'
    	}
    	if len(path) < 2 {
    		return 0
    	}
    	// with drive letter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/net/http/response_test.go

    			Header: Header{
    				"Content-Length": {"0"},
    			},
    			Close:         false,
    			ContentLength: 0,
    		},
    
    		"",
    	},
    
    	// Status line without a Reason-Phrase, but trailing space.
    	// (permitted by RFC 7230, section 3.1.2)
    	{
    		"HTTP/1.0 303 \r\n\r\n",
    		Response{
    			Status:        "303 ",
    			StatusCode:    303,
    			Proto:         "HTTP/1.0",
    			ProtoMajor:    1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top