Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,146 for External (1.41 sec)

  1. pkg/test/framework/components/echo/echotest/filters_test.go

    	}}}
    	// external svc
    	external1 = &fakeInstance{
    		Cluster: cls1, Namespace: echo1NS, Service: "external", DefaultHostHeader: "external.com", Subsets: []echo.SubsetConfig{{
    			Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    		}},
    	}
    	external2 = &fakeInstance{
    		Cluster: cls2, Namespace: echo1NS, Service: "external", DefaultHostHeader: "external.com", Subsets: []echo.SubsetConfig{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginBuildScriptIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process
    
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.exec
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.javaexec
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.processBuilder
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.runtimeExec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/preflight/checks.go

    	var cert tls.Certificate
    	if evc.Etcd.External.CertFile != "" && evc.Etcd.External.KeyFile != "" {
    		var err error
    		cert, err = tls.LoadX509KeyPair(evc.Etcd.External.CertFile, evc.Etcd.External.KeyFile)
    		if err != nil {
    			return nil, errors.Wrapf(err, "couldn't load external etcd's certificate and key pair %s, %s", evc.Etcd.External.CertFile, evc.Etcd.External.KeyFile)
    		}
    		if config == nil {
    			config = &tls.Config{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

    }
    
    // Defines configurations used to resolve external dependencies
    // that the public API depends on.
    // TODO: We should be able to derive these dependencies automatically.
    //       In fact, our public API should have no external dependencies.
    val externalApi = configurations.dependencyScope("externalApi") {
        description = "External dependencies that the public Gradle API depends on"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. tests/integration/ambient/main_test.go

    					},
    				},
    			},
    		})
    	}
    
    	external := cdeployment.External{Namespace: apps.ExternalNamespace}
    	external.Build(t, builder)
    
    	echos, err := builder.Build()
    	if err != nil {
    		return err
    	}
    	for _, b := range echos {
    		scopes.Framework.Infof("built %v", b.Config().Service)
    	}
    
    	external.LoadValues(echos)
    	apps.MockExternal = external.All
    
    	// All does not include external
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. docs/tr/docs/advanced/index.md

    Onların kurslarını denemek isteyebilirsiniz:
    
    * <a href="https://training.talkpython.fm/fastapi-courses" class="external-link" target="_blank">Talk Python Training</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:05:51 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/certs.go

    		data, ok := c.(InitData)
    		if !ok {
    			return errors.New("certs phase invoked with an invalid data struct")
    		}
    
    		// if using external etcd, skips etcd certificate authority generation
    		if data.Cfg().Etcd.External != nil && ca.Name == "etcd-ca" {
    			fmt.Printf("[certs] External etcd mode: Skipping %s certificate authority generation\n", ca.BaseName)
    			return nil
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInInitScriptIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process
    
    
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.exec
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.javaexec
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.processBuilder
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.runtimeExec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. build-logic/jvm/src/main/kotlin/gradlebuild/ConfigurationExtensions.kt

            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.JAR))
            attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL))
        }
    }
    
    
    fun ResolvableConfiguration.configureAsRuntimeJarClasspath(objects: ObjectFactory) {
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStableConfigurationCacheIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture
    
    class ConfigurationCacheStableConfigurationCacheIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def setup() {
            settingsFile '''
                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            '''
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top