Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 217 for dataSource (0.21 sec)

  1. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    					TlsCertificates: []*envoy_tls.TlsCertificate{
    						{
    							CertificateChain: &envoy_core.DataSource{
    								Specifier: &envoy_core.DataSource_Filename{
    									Filename: "/etc/envoy/external-forward-proxy-cert.pem",
    								},
    							},
    							PrivateKey: &envoy_core.DataSource{
    								Specifier: &envoy_core.DataSource_Filename{
    									Filename: "/etc/envoy/external-forward-proxy-key.pem",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/DataAccessor.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Level;
    
    import java.io.IOException;
    
    public interface DataAccessor {
        DataSource createSource(String name, byte[] bytes, Level level) throws IOException;
        DataTarget createTarget(String name, Level level);
        DataTargetFactory createTargetFactory(String root, Level level) throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 998 bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier_test.go

    							},
    							Providers: map[string]*envoy_jwt.JwtProvider{
    								"origins-0": {
    									Issuer: "https://secret.foo.com",
    									JwksSourceSpecifier: &envoy_jwt.JwtProvider_LocalJwks{
    										LocalJwks: &core.DataSource{
    											Specifier: &core.DataSource_InlineString{
    												InlineString: test.JwtPubKey1,
    											},
    										},
    									},
    									Forward:           false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  4. pkg/registry/core/persistentvolumeclaim/strategy.go

    	// For data sources, we need to do 2 things to implement KEP 1495
    
    	// First drop invalid values from spec.dataSource (anything other than PVC or
    	// VolumeSnapshot) if certain conditions are met.
    	pvcutil.EnforceDataSourceBackwardsCompatibility(&pvc.Spec, nil)
    
    	// Second copy dataSource -> dataSourceRef or dataSourceRef -> dataSource if one of them
    	// is nil and the other is non-nil
    	pvcutil.NormalizeDataSources(&pvc.Spec)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 20:58:25 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/DataTarget.java

     */
    
    package org.gradle.caching.internal.tasks;
    
    import java.io.IOException;
    import java.io.OutputStream;
    
    public interface DataTarget extends DataItem {
        OutputStream openOutput() throws IOException;
        DataSource toSource() throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 864 bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/conf/application.conf

    # Default to Routes in the root package (and conf/routes)
    # application.router=my.application.Routes
    
    # Database configuration
    # ~~~~~
    # You can declare as many datasources as you want.
    # By convention, the default datasource is named `default`
    #
    # db.default.driver=org.h2.Driver
    # db.default.url="jdbc:h2:mem:play"
    # db.default.user=sa
    # db.default.password=""
    
    # Evolutions
    # ~~~~~
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/wasm.go

    	return &wasm.PluginConfig_VmConfig{
    		VmConfig: &wasm.VmConfig{
    			Runtime: "envoy.wasm.runtime.null",
    			Code: &core.AsyncDataSource{Specifier: &core.AsyncDataSource_Local{
    				Local: &core.DataSource{
    					Specifier: &core.DataSource_InlineString{
    						InlineString: name,
    					},
    				},
    			}},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/DelegatingDataTarget.java

            this.delegate = delegate;
        }
    
        @Override
        public OutputStream openOutput() throws IOException {
            return delegate.openOutput();
        }
    
        @Override
        public DataSource toSource() throws IOException {
            return delegate.toSource();
        }
    
        @Override
        public String getName() {
            return delegate.getName();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolumeClaim.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolumeClaim.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top