Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 84 of 84 for UNSUPPORTED (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Occasionally, you want to copy files or directories as _part_ of a task.
    For example, a custom archiving task based on an unsupported archive format might want to copy files to a temporary directory before they are archived.
    You still want to take advantage of Gradle's copy API without introducing an extra `Copy` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    			return resp, err
    		}
    		var err error
    		req, err = rewindBody(req)
    		if err != nil {
    			return nil, err
    		}
    	}
    	if !isHTTP {
    		req.closeBody()
    		return nil, badStringError("unsupported protocol scheme", scheme)
    	}
    	if req.Method != "" && !validMethod(req.Method) {
    		req.closeBody()
    		return nil, fmt.Errorf("net/http: invalid method %q", req.Method)
    	}
    	if req.URL.Host == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    			// They use a compact stateful bytecode representation.
    			// Here we record what are needed and encode them later.
    			MachoAddBind(int64(ldr.SymGot(s)), s)
    		}
    	} else {
    		ldr.Errorf(s, "addgotsym: unsupported binary format")
    	}
    }
    
    var hostobjcounter int
    
    // captureHostObj writes out the content of a host object (pulled from
    // an archive or loaded from a *.o file directly) to a directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				first := st.expression()
    				second := st.expression()
    				third := st.expression()
    				return &Trinary{Op: o, First: first, Second: second, Third: third}
    			}
    
    		default:
    			st.fail(fmt.Sprintf("unsupported number of operator arguments: %d", args))
    			panic("not reached")
    		}
    	}
    }
    
    // subobject parses:
    //
    //	<expression> ::= so <referent type> <expr> [<offset number>] <union-selector>* [p] E
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top