Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for showUrl (0.15 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/kt/CustomTrust.kt

            .sslSocketFactory(certificates.sslSocketFactory(), certificates.trustManager)
            .build()
      }
    
      fun run() {
        showUrl("https://squareup.com/robots.txt")
        showUrl("https://publicobject.com/helloworld.txt")
      }
    
      private fun showUrl(url: String) {
        val request = Builder().url(url).build()
        client.newCall(request)
          .execute()
          .use { response ->
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/cmd/doc/pkg.go

    	}
    }
    
    // emit prints the node. If showSrc is true, it ignores the provided comment,
    // assuming the comment is in the node itself. Otherwise, the go/doc package
    // clears the stuff we don't want to print anyway. It's a bit of a magic trick.
    func (pkg *Package) emit(comment string, node ast.Node) {
    	if node != nil {
    		var arg any = node
    		if showSrc {
    			// Need an extra little dance to get internal comments to appear.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. src/cmd/doc/main.go

    	"path"
    	"path/filepath"
    	"strings"
    
    	"cmd/internal/telemetry"
    )
    
    var (
    	unexported bool   // -u flag
    	matchCase  bool   // -c flag
    	chdir      string // -C flag
    	showAll    bool   // -all flag
    	showCmd    bool   // -cmd flag
    	showSrc    bool   // -src flag
    	short      bool   // -short flag
    )
    
    // usage is a replacement usage function for the flags package.
    func usage() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/internal/src/pos.go

    	format(w, p.RelFilename(), p.RelLine(), p.RelCol(), showCol)
    	if showOrig {
    		io.WriteString(w, "[")
    		format(w, p.Filename(), p.Line(), p.Col(), showCol)
    		io.WriteString(w, "]")
    	}
    }
    
    // format formats a (filename, line, col) tuple as "filename:line" (showCol
    // is false or col == 0) or "filename:line:column" (showCol is true and col != 0).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.diagnostics.OutgoingVariantsReportTask.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>variantName</td>
                </tr>
                <tr>
                    <td>showAll</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/DependentComponentsReport.java

         */
        @Option(option = "all", description = "Show all components (non-buildable and test suites).")
        public void setShowAll(boolean showAll) {
            this.showNonBuildable = showAll;
            this.showTestSuites = showAll;
        }
    
        /**
         * Returns the components to generate the report for.
         * Defaults to all components of this project.
         *
         * @return the components.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.api.reporting.dependents.DependentComponentsReport.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>showAll</td>
                </tr>
                <tr>
                    <td>showNonBuildable</td>
                </tr>
                <tr>
                    <td>showTestSuites</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.diagnostics.ResolvableConfigurationsReportTask.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>configurationName</td>
                </tr>
                <tr>
                    <td>showAll</td>
                </tr>
                <tr>
                    <td>recursive</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

                    doLast {
                        showUrls(getClass().getClassLoader())
                    }
                }
    
                def showUrls(classloader) {
                    if (classloader instanceof java.net.URLClassLoader) {
                        classloader.URLs.each { println ">>>" + it }
                    }
                    if (classloader.parent != null) {
                        showUrls(classloader.parent)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/MinimalJavadocOptions.java

        MinimalJavadocOptions showFromPublic();
    
        MinimalJavadocOptions showFromProtected();
    
        MinimalJavadocOptions showFromPackage();
    
        MinimalJavadocOptions showFromPrivate();
    
        MinimalJavadocOptions showAll();
    
        @Nullable @Optional @Input
        String getDoclet();
    
        void setDoclet(@Nullable String docletClass);
    
        MinimalJavadocOptions doclet(String docletClass);
    
        @Classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top