Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sortie (0.19 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

              Map<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) {
        return new TransformedEntriesMap<>(fromMap, transformer);
      }
    
      /**
       * Returns a view of a sorted map whose values are derived from the original sorted map's entries.
       * In contrast to {@link #transformValues}, this method's entry-transformation logic may depend on
       * the key as well as the value.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		TagSet: &ObjectTagSet{},
    	}
    
    	var list []tags.Tag
    	for k, v := range ot.ToMap() {
    		list = append(list, tags.Tag{
    			Key:   k,
    			Value: v,
    		})
    	}
    	// Always return in sorted order for tags.
    	sort.Slice(list, func(i, j int) bool {
    		return list[i].Key < list[j].Key
    	})
    	otags.TagSet.Tags = list
    
    	writeSuccessResponseXML(w, encodeResponse(otags))
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    				toAPIError(ctx, InvalidPart{}),
    				getGetObjectURL("", bucketName, objectName), "", "")),
    			expectedRespStatus: http.StatusBadRequest,
    		},
    		// Test case - 6.
    		// Parts are not sorted according to the part number.
    		// This should return ErrInvalidPartOrder in the response body.
    		{
    			bucket:    bucketName,
    			object:    objectName,
    			uploadID:  uploadIDs[0],
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_aws/fess.json

            },
            "basque_keywords": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/_cloud/fess.json

            },
            "basque_keywords": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Ben Aubin <******@****.***>
    mintere.site
    
    // MobileEducation, LLC : https://joinforte.com
    // Submitted by Grayson Martin <******@****.***>
    forte.id
    
    // Mozilla Corporation : https://mozilla.com
    // Submitted by Ben Francis <******@****.***>
    mozilla-iot.org
    
    // Mozilla Foundation : https://mozilla.org/
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top