Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 6,766 for depend (0.16 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    	res := []string{}
    	if svc.Spec.ClusterIP != "" && svc.Spec.ClusterIP != v1.ClusterIPNone {
    		res = append(res, svc.Spec.ClusterIP)
    	}
    	for _, ing := range svc.Status.LoadBalancer.Ingress {
    		// IPs are strictly optional for loadbalancers - they may just have a hostname.
    		if ing.IP != "" {
    			res = append(res, ing.IP)
    		}
    	}
    	return res
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/RepositoryResourceAccessor.java

    import org.gradle.api.Action;
    
    import java.io.InputStream;
    
    /**
     * Provides access to resources on an artifact repository. Gradle takes care of caching
     * the resources locally. The scope of the cache may depend on the accessor: users should
     * refer to the javadocs of the methods providing an accessor to determine the scope.
     *
     * @since 4.0
     */
    public interface RepositoryResourceAccessor {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/teststdio/stdio_test.go

    	}
    	os.Setenv("PWD", modRoot)
    	if err := os.WriteFile("go.mod", []byte("module cgostdio\n"), 0666); err != nil {
    		log.Panic(err)
    	}
    
    	return m.Run()
    }
    
    // TestTestRun runs a cgo test that doesn't depend on non-standard libraries.
    func TestTestRun(t *testing.T) {
    	testenv.MustHaveGoRun(t)
    	testenv.MustHaveCGO(t)
    
    	for _, file := range [...]string{
    		"chain.go",
    		"fib.go",
    		"hello.go",
    	} {
    		file := file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 20:56:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseJavaProjectModulesIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires(UnitTestPreconditions.Jdk9OrLater)
    class EclipseJavaProjectModulesIntegrationTest extends AbstractEclipseIntegrationSpec {
    
        def "depend on modular project"() {
            setup:
            /*
            This is the multi-module project structure the integration test works with:
            -root
              -api
              -util
            */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastapplied.go

    // LastAppliedConfigAnnotation is the annotation used to store the previous
    // configuration of a resource for use in a three way diff by UpdateApplyAnnotation.
    //
    // This is a copy of the corev1 annotation since we don't want to depend on the whole package.
    const LastAppliedConfigAnnotation = "kubectl.kubernetes.io/last-applied-configuration"
    
    // SetLastApplied sets the last-applied annotation the given value in
    // the object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/LazyLogger.java

      LazyLogger(Class<?> ownerOfLogger) {
        this.loggerName = ownerOfLogger.getName();
      }
    
      Logger get() {
        /*
         * We use double-checked locking. We could the try racy single-check idiom, but that would
         * depend on Logger not contain mutable state.
         *
         * We could use Suppliers.memoizingSupplier here, but I micro-optimized to this implementation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. cluster/gce/windows/configure.ps1

    # and `k8s.io/release/lib/releaselib.sh` must be manually updated with the changes.
    # We HIGHLY recommend not changing the file structure, because consumers of
    # Kubernetes releases depend on the release structure remaining stable.
    
    $ErrorActionPreference = 'Stop'
    
    # Turn on tracing to debug
    # Set-PSDebug -Trace 1
    
    # Update TLS setting to enable Github downloads and disable progress bar to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_build_trimpath_issue48557.txt

    # Regression test for issue #48557.
    # Since builds in module mode do not support relative imports at all, the build
    # ID for (and other contents of) a binary built with -trimpath in module mode
    # should not depend on its working directory, even if the binary is specified as
    # a list of relative source files.
    
    [short] skip  # links and runs binaries
    
    env GOFLAGS=-trimpath
    env GOCACHE=$WORK/gocache
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 16:46:09 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/publish/plugins/PublishingPluginRules.java

    import org.gradle.model.Model;
    import org.gradle.model.ModelMap;
    import org.gradle.model.Mutate;
    import org.gradle.model.RuleSource;
    
    /**
     * These bindings are only here for backwards compatibility, as some users might depend on the extensions being available in the model.
     */
    class PublishingPluginRules extends RuleSource {
        @Model
        PublishingExtension publishing(ExtensionContainer extensions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

            // Direct dependencies should be computed lazily, because the built-ins module will be reachable via module dependencies. Getting
            // the built-ins module relies on the built-ins session, which may depend on services that are registered after
            // `KtStaticModuleDependentsProvider`.
            buildDependentsMap(modules) { it.allDirectDependencies() }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top