Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for GetResourceName (0.88 sec)

  1. pkg/bootstrap/option/convert.go

    			CaCertificatePath: model.GetOrDefault(metadata.TLSClientRootCert, tls.CaCertificates),
    		}
    		if len(res.GetResourceName()) > 0 {
    			tlsContext.CommonTlsContext.TlsCertificateSdsSecretConfigs = append(tlsContext.CommonTlsContext.TlsCertificateSdsSecretConfigs,
    				model.ConstructSdsSecretConfig(res.GetResourceName()))
    		}
    
    		tlsContext.CommonTlsContext.ValidationContextType = &auth.CommonTlsContext_CombinedValidationContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            final Map<String, String> params = new HashMap<>(crawlingConfig.getConfigParameterMap(ConfigName.CONFIG));
            params.put(ExtractData.RESOURCE_NAME_KEY, getResourceName(responseData));
            params.put(ExtractData.CONTENT_TYPE, responseData.getMimeType());
            params.put(ExtractData.CONTENT_ENCODING, responseData.getCharSet());
            params.put(ExtractData.URL, responseData.getUrl());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. pilot/pkg/security/model/authentication.go

    			},
    		}
    
    	}
    	tlsContext.TlsCertificateSdsSecretConfigs = []*tls.SdsSecretConfig{
    		ConstructSdsSecretConfig(model.GetOrDefault(res.GetResourceName(), SDSDefaultResourceName)),
    	}
    }
    
    // ApplyCustomSDSToClientCommonTLSContext applies the customized sds to CommonTlsContext
    // Used for building upstream TLS context for egress gateway's TLS/mTLS origination
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pkg/security/security.go

    	CertificatePath   string
    	PrivateKeyPath    string
    	CaCertificatePath string
    }
    
    const (
    	ResourceSeparator = "~"
    )
    
    // GetResourceName converts a SdsCertificateConfig to a string to be used as an SDS resource name
    func (s SdsCertificateConfig) GetResourceName() string {
    	if s.IsKeyCertificate() {
    		return "file-cert:" + s.CertificatePath + ResourceSeparator + s.PrivateKeyPath // Format: file-cert:%s~%s
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        // ClassPath may contain resources from the boot class loader; just not from the class path.
        for (ResourceInfo resource : classPath.getResources()) {
          assertThat(resource.getResourceName()).doesNotContain("com/google/common/reflect/");
        }
      }
    
      private static ClassPath.ClassInfo findClass(
          Iterable<ClassPath.ClassInfo> classes, Class<?> cls) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent_test.go

    			a.ProxyConfig.ProxyMetadata[MetadataClientRootCert] = filepath.Join(dir, "root-cert.pem")
    			a.Security.FileMountedCerts = true
    			return a
    		}).Check(t, cfg.GetRootResourceName(), cfg.GetResourceName())
    	})
    	t.Run("File mounted certs with bogus token path", func(t *testing.T) {
    		// User sets FileMountedCerts and a bogus token path.
    		// They also need to set ISTIO_META_TLS_CLIENT* to specify the file paths.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_tls.go

    				CaCertificatePath: tls.CaCertificates,
    			}
    			tlsContext.CommonTlsContext.TlsCertificateSdsSecretConfigs = append(tlsContext.CommonTlsContext.TlsCertificateSdsSecretConfigs,
    				sec_model.ConstructSdsSecretConfig(res.GetResourceName()))
    
    			// If tls.CaCertificate or CaCertificate in Metadata isn't configured, or tls.InsecureSkipVerify is true,
    			// don't set up SdsSecretConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/reflect/ClassPath.java

          return Resources.asCharSource(url(), charset);
        }
    
        /** Returns the fully qualified name of the resource. Such as "com/mycomp/foo/bar.txt". */
        public final String getResourceName() {
          return resourceName;
        }
    
        /** Returns the file that includes this resource. */
        final File getFile() {
          return file;
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/cache/secretcache_test.go

    	setupTestDir(t, sc)
    
    	workloadResource := security.WorkloadKeyCertResourceName
    	rootResource := security.RootCertReqResourceName
    	if sds {
    		workloadResource = sc.existingCertificateFile.GetResourceName()
    		rootResource = sc.existingCertificateFile.GetRootResourceName()
    	}
    
    	certchain, err := os.ReadFile(sc.existingCertificateFile.CertificatePath)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/ClassPath.java

          return Resources.asCharSource(url(), charset);
        }
    
        /** Returns the fully qualified name of the resource. Such as "com/mycomp/foo/bar.txt". */
        public final String getResourceName() {
          return resourceName;
        }
    
        /** Returns the file that includes this resource. */
        final File getFile() {
          return file;
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
Back to top