Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 339 for GetCrl (0.2 sec)

  1. pilot/pkg/xds/sds_test.go

    					Cert:   string(scrt.GetTlsCertificate().GetCertificateChain().GetInlineBytes()),
    					CaCert: string(scrt.GetValidationContext().GetTrustedCa().GetInlineBytes()),
    					CaCrl:  string(scrt.GetValidationContext().GetCrl().GetInlineBytes()),
    				}
    			}
    			if diff := cmp.Diff(got, tt.expect); diff != "" {
    				t.Fatal(diff)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/DefaultGitVersionControlSpec.java

        private URI url;
    
        @Override
        public URI getUrl() {
            return url;
        }
    
        @Override
        public void setUrl(URI url) {
            this.url = url;
        }
    
        @Override
        public void setUrl(String url) {
            // TODO - should use a resolver so that this method is consistent with Project.uri(string)
            try {
                setUrl(new URI(url));
            } catch (URISyntaxException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultModelUrlNormalizer.java

        public void normalize(Model model, ModelBuildingRequest request) {
            if (model == null) {
                return;
            }
    
            model.setUrl(normalize(model.getUrl()));
    
            Scm scm = model.getScm();
            if (scm != null) {
                scm.setUrl(normalize(scm.getUrl()));
                scm.setConnection(normalize(scm.getConnection()));
                scm.setDeveloperConnection(normalize(scm.getDeveloperConnection()));
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            target.setName(source.getName().getOrNull());
            target.setUrl(source.getUrl().getOrNull());
            return target;
        }
    
        private static License convertLicense(MavenPomLicense source) {
            License target = new License();
            target.setName(source.getName().getOrNull());
            target.setUrl(source.getUrl().getOrNull());
            target.setDistribution(source.getDistribution().getOrNull());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            where:
            getGetterName    | isGetterName    | setterName       | propertyName
            "getUrl"         | "isUrl"         | "setUrl"         | "url"
            "getURL"         | "isURL"         | "setURL"         | "URL"
            "getcCompiler"   | "iscCompiler"   | "setcCompiler"   | "cCompiler"
            "getCCompiler"   | "isCCompiler"   | "setCCompiler"   | "CCompiler"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultUrlArtifactRepository.java

            this.displayNameSupplier = displayNameSupplier;
        }
    
        @Override
        public URI getUrl() {
            return url == null ? null : fileResolver.resolveUri(url);
        }
    
        @Override
        public void setUrl(URI url) {
            this.url = url;
        }
    
        @Override
        public void setUrl(Object url) {
            this.url = url;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImpl.java

                final UrlQueueImpl<Long> urlQueue = new UrlQueueImpl<>();
                urlQueue.setSessionId(sessionId);
                urlQueue.setMethod(Constants.GET_METHOD);
                urlQueue.setUrl(url);
                urlQueue.setUrl(url);
                urlQueue.setDepth(0);
                urlQueue.setCreateTime(SystemUtil.currentTimeMillis());
                urlQueueList.add(urlQueue);
            }
        }
    
        /*
         * (non-Javadoc)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/main/java/org/gradle/vcs/git/GitVersionControlSpec.java

         * 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)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/FaultTolerantClientTest.java

                    throw new CrawlerSystemException("exception " + count);
                }
    
                final ResponseData responseData = new ResponseData();
                responseData.setUrl(request.getUrl());
                responseData.setMethod(request.getMethod().toString());
                return responseData;
            }
    
            /*
             * (non-Javadoc)
             *
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/commandLineOption-stringOption/kotlin/buildSrc/src/main/java/UrlVerify.java

    public class UrlVerify extends DefaultTask {
        private String url;
    
        @Option(option = "url", description = "Configures the URL to be verified.")
        public void setUrl(String url) {
            this.url = url;
        }
    
        @Input
        public String getUrl() {
            return url;
        }
    
        @TaskAction
        public void verify() {
            getLogger().quiet("Verifying URL '{}'", url);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 665 bytes
    - Viewed (0)
Back to top