Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 369 for getIml (0.25 sec)

  1. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultDocumentationLink.java

        private final String url;
    
        public DefaultDocumentationLink(String url) {
            this.url = url;
        }
    
        @Override
        public String getUrl() {
            return url;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 15:06:35 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/main/java/org/gradle/vcs/git/GitVersionControlSpec.java

         * Specifically, {@link java.net.URL} extends {@link URI} to add network
         * operations which are both unsuited for simple data specification and
         * allocate additional memory.</p>
         */
        URI getUrl();
    
        /**
         * Sets the URL of the repository.
         */
        void setUrl(URI url);
    
        /**
         * Sets the URL of the repository.
         */
        void setUrl(String url);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationsProvider.java

         */
        int size();
    
        boolean isFixedSize();
    
        Set<? extends ConfigurationInternal> getAll();
    
        void visitAll(Consumer<ConfigurationInternal> visitor);
    
        @Nullable
        ConfigurationInternal findByName(String name);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/commandLineOption-optionValues/kotlin/buildSrc/src/main/java/UrlProcess.java

                throw new IllegalArgumentException("HTTP is not allowed");
            } else {
                this.url = url;
            }
        }
    
        @Input
        public String getUrl() {
            return url;
        }
    
        @Option(option = "output-type", description = "Configures the output type.")
        public void setOutputType(OutputType outputType) {
            this.outputType = outputType;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/DomainObjectSet.java

    public interface DomainObjectSet<T> extends Set<T> {
        /**
         * Returns the elements of this set in the set's iteration order.
         *
         * @return The elements of this set in the set's iteration order.
         */
        List<T> getAll();
    
        /**
         * Returns the element at the given index according to the set's iteration order.
         *
         * @param index The index of the element to get.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/RemoteRepository.java

    /**
     * A remote repository that can be used to download or upload artifacts.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface RemoteRepository extends Repository {
    
        @Nonnull
        String getUrl();
    
        @Nonnull
        String getProtocol();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomProjectManagement.java

            url = objectFactory.property(String.class);
        }
    
        @Override
        public Property<String> getSystem() {
            return system;
        }
    
        @Override
        public Property<String> getUrl() {
            return url;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/kube/watcher/configmapwatcher/configmapwatcher_test.go

    )
    
    func callback(cm *v1.ConfigMap) {
    	mu.Lock()
    	defer mu.Unlock()
    	called = true
    	newCM = cm
    }
    
    func getCalled() bool {
    	mu.Lock()
    	defer mu.Unlock()
    	return called
    }
    
    func getCM() *v1.ConfigMap {
    	mu.Lock()
    	defer mu.Unlock()
    	return newCM
    }
    
    func resetCalled() {
    	called = false
    	newCM = nil
    }
    
    func Test_ConfigMapWatcher(t *testing.T) {
    	client := kube.NewFakeClient()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/ca_test.go

    		t.Errorf("Got error while creating self-signed CA: %v", err)
    	}
    	if ca == nil {
    		t.Fatalf("Failed to create a self-signed CA.")
    	}
    
    	signingCert, _, certChainBytes, rootCertBytes := ca.GetCAKeyCertBundle().GetAll()
    	rootCert, err := util.ParsePemEncodedCertificate(rootCertBytes)
    	if err != nil {
    		t.Error(err)
    	}
    	// Root cert and siging cert are the same for self-signed CA.
    	if !rootCert.Equal(signingCert) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DocLink.java

     */
    public interface DocLink extends Serializable {
    
        /**
         * The URL to the documentation page.
         */
        String getUrl();
    
        /**
         * A message that tells the user to consult the documentation.
         * There are currently 2 different messages used for this, hence this method.
         */
        String getConsultDocumentationMessage();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top