Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for GetUrl (0.48 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            succeeds('init', '--type', 'java-application', '--dsl', GROOVY.toString().toLowerCase())
    
            then:
    
            targetDir.file("settings.gradle").assertContents(containsString(userManual("multi_project_builds").getUrl()))
        }
    
        def "gives decent error message when triggered with unknown init-type"() {
            when:
            fails('init', '--type', 'some-unknown-library')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    		Tty:         streamOpts.TTY,
    		Stdin:       streamOpts.Stdin,
    		Stdout:      streamOpts.Stdout,
    		Stderr:      streamOpts.Stderr,
    	})
    	if err != nil {
    		return nil, err
    	}
    	return url.Parse(resp.GetUrl())
    }
    
    func (fk *fakeKubelet) GetAttach(_ context.Context, podFullName string, podUID types.UID, containerName string, streamOpts remotecommandserver.Options) (*url.URL, error) {
    	if fk.getAttachCheck != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

         * is supported (i.e. no <tt>doOutput</tt>).
         *
         * @deprecated Use getURL() instead
         * @return A new <code>{@link java.net.URL}</code> for this <code>SmbFile</code>
         */
        @Deprecated
        public URL toURL () {
            return getURL();
        }
    
    
        /**
         * Computes a hashCode for this file based on the URL string and IP
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

            DefaultMirrorSelector mirrorSelector = new DefaultMirrorSelector();
            for (Mirror mirror : request.getMirrors()) {
                mirrorSelector.add(
                        mirror.getId(),
                        mirror.getUrl(),
                        mirror.getLayout(),
                        false,
                        mirror.isBlocked(),
                        mirror.getMirrorOf(),
                        mirror.getMirrorOfLayouts());
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. cmd/server_test.go

    		c.Assert(err, nil)
    
    		response, err = s.client.Do(request)
    		c.Assert(err, nil)
    		c.Assert(response.StatusCode, http.StatusOK)
    	}
    
    	testCases := []struct {
    		getURL          string
    		expectedStrings []string
    	}{
    		{getListObjectsV1URL(s.endPoint, bucketName, "", "1000", ""), []string{"<Key>foo bar 1</Key>", "<Key>foo bar 2</Key>"}},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            String charset = responseData.getCharSet();
            if (charset == null) {
                charset = Constants.UTF_8;
            }
            final String name;
            final String url = responseData.getUrl();
            final int pos = url.lastIndexOf('/');
            try {
                if (pos >= 0 && pos + 1 < url.length()) {
                    name = URLDecoder.decode(url.substring(pos + 1), charset);
                } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.artifacts.DependencyArtifact.getType()> does not have raw return type assignable to org.gradle.api.provider.Property in (DependencyArtifact.java:0)
    Method <org.gradle.api.artifacts.DependencyArtifact.getUrl()> does not have raw return type assignable to org.gradle.api.provider.Property in (DependencyArtifact.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              <code>
                <![CDATA[
        /**
         * @see java.lang.Object#toString()
         */
        public String toString()
        {
            return "IssueManagement {system=" + getSystem() + ", url=" + getUrl() + "}";
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
          <name>DistributionManagement</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        }
    
        private static DocumentationLink toDocumentationLink(@Nullable InternalDocumentationLink link) {
            return link == null ? new DefaultDocumentationLink(null) : new DefaultDocumentationLink(link.getUrl());
        }
    
        private static List<Solution> toSolutions(List<InternalSolution> solutions) {
            List<Solution> result = new ArrayList<>(solutions.size());
            for (InternalSolution solution : solutions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  10. pkg/test/echo/proto/echo.pb.go

    		return x.Qps
    	}
    	return 0
    }
    
    func (x *ForwardEchoRequest) GetTimeoutMicros() int64 {
    	if x != nil {
    		return x.TimeoutMicros
    	}
    	return 0
    }
    
    func (x *ForwardEchoRequest) GetUrl() string {
    	if x != nil {
    		return x.Url
    	}
    	return ""
    }
    
    func (x *ForwardEchoRequest) GetHeaders() []*Header {
    	if x != nil {
    		return x.Headers
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top