Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for descriptor (0.23 sec)

  1. src/cmd/go/internal/load/pkg.go

    					have[file] = true
    				}
    			}
    			if have[file] {
    				continue
    			}
    		}
    		files = append(files, file)
    	}
    	return files
    }
    
    // Desc returns the package "description", for use in b.showOutput.
    func (p *Package) Desc() string {
    	if p.ForTest != "" {
    		return p.ImportPath + " [" + p.ForTest + ".test]"
    	}
    	if p.Internal.ForMain != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      if [[ -z "${subnet}" ]]; then
        echo "Creating subnet ${NETWORK}:${IP_ALIAS_SUBNETWORK}"
        gcloud compute networks subnets create \
          "${IP_ALIAS_SUBNETWORK}" \
          --description "Automatically generated subnet for ${INSTANCE_PREFIX} cluster. This will be removed on cluster teardown." \
          --project "${NETWORK_PROJECT}" \
          --network "${NETWORK}" \
          --region "${REGION}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Convert (Add(64|32) (Convert ptr mem) off) mem) => (AddPtr ptr off)
    (Convert (Convert ptr mem) mem) => ptr
    
    // strength reduction of divide by a constant.
    // See ../magic.go for a detailed description of these algorithms.
    
    // Unsigned divide by power of 2.  Strength reduce to a shift.
    (Div8u  n (Const8  [c])) && isPowerOfTwo8(c)  => (Rsh8Ux64  n (Const64 <typ.UInt64> [log8(c)]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

       * NavigableMap#tailMap(Object, boolean) tailMap()}, and {@link NavigableMap#headMap(Object,
       * boolean) headMap()}) to actually construct the view. Consult these methods for a full
       * description of the returned view's behavior.
       *
       * <p><b>Warning:</b> {@code Range}s always represent a range of values using the values' natural
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

       * NavigableMap#tailMap(Object, boolean) tailMap()}, and {@link NavigableMap#headMap(Object,
       * boolean) headMap()}) to actually construct the view. Consult these methods for a full
       * description of the returned view's behavior.
       *
       * <p><b>Warning:</b> {@code Range}s always represent a range of values using the values' natural
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. cmd/object-handlers_test.go

    				// validate the error response.
    				want := getAPIError(test.expectedAPIError)
    				if test.expectedAPIError == -1 {
    					want.HTTPStatusCode = 200
    					want.Code = "<no error>"
    					want.Description = "<no error>"
    				}
    				if rec.Code != http.StatusOK {
    					var errBytes []byte
    					// read the response body.
    					errBytes, err = io.ReadAll(rec.Result().Body)
    					if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top