Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 403 for Discover (0.35 sec)

  1. pkg/bootstrap/platform/discovery.go

    	"Istio will try to discover the platform. Valid platform values are aws, azure, gcp, none").Get()
    
    // Discover attempts to discover the host platform, defaulting to
    // `Unknown` if a platform cannot be discovered.
    func Discover(ipv6 bool) Environment {
    	// First check if user has specified platform - use it if provided.
    	if len(CloudPlatform) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/calico-clusterrole.yaml

        resources:
          - configmaps
        verbs:
          - get
      - apiGroups: [""]
        resources:
          - endpoints
          - services
        verbs:
          # Used to discover service IPs for advertisement.
          - watch
          - list
          # Used to discover Typhas.
          - get
      - apiGroups: [""]
        resources:
          - nodes/status
        verbs:
          # Needed for clearing NodeNetworkUnavailable flag.
          - patch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 26 02:52:06 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v0.0.0-20200325131415-0123456789ab

    TODO(golang.org/issue/24031): the proxy and proxy.golang.org both return
    the highest release version from the @latest endpoint, even if that
    version is retracted, so there is no way for the go command to
    discover an unretracted pseudo-version.
    
    -- .mod --
    module example.com/retract/self/pseudo
    
    go 1.15
    
    -- .info --
    {"Version":"v0.0.0-20200325131415-01234567890ab"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 568 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminer.java

                @Override
                public boolean isSatisfiedBy(VisualStudioInstallCandidate install) {
                    return install.getInstallDir().equals(installDir);
                }
            });
    
            // If we can't discover the version from the normal metadata, make some assumptions
            if (install == null) {
                VisualCppInstallCandidate visualCppMetadata = visualCppMetadataProvider.getVisualCppFromMetadataFile(installDir);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ProjectionOnlyNodeInitializer.java

        public Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor) {
            return ImmutableSetMultimap.<ModelActionRole, ModelAction>builder()
                .put(ModelActionRole.Discover, AddProjectionsAction.of(subject, descriptor, projections))
                .build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/PropertyMixIn.java

     *
     * Note that when a type implements this interface, dynamic Groovy dispatch will not be used to discover opaque properties. That is, methods such as propertyMissing() will be ignored.
     */
    public interface PropertyMixIn {
        PropertyAccess getAdditionalProperties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilderInternal.java

        /**
         * Builds a structural implementation of the {@link org.gradle.tooling.model.GradleProject} model
         * for the root project of a given project.
         *
         * @param project used to discover the root project to build the model for
         */
        DefaultGradleProject buildForRoot(Project project);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 09 11:38:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModelBuilderInternal.java

        /**
         * Builds a structural implementation of the {@link org.gradle.tooling.model.idea.IdeaProject} model
         * for the root project of a given project.
         *
         * @param project used to discover the root project to build the model for
         */
        DefaultIdeaProject buildForRoot(Project project, boolean offlineDependencyResolution);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 12:13:36 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/NativeToolChainDiscoveryIntegrationTest.groovy

        def setup() {
            // Discard init script content generated by superclass
            initScript.text = ""
        }
    
        @ToBeFixedForConfigurationCache
        def "can discover tool chain in environment"() {
            given:
            toolChain.initialiseEnvironment()
    
            and:
            buildFile << """
    apply plugin: 'cpp'
    model {
        toolChains {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/VisitForInstrumentation.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * A method that can be used to visit classes for an instrumentation from other projects.
     * TODO: We should discover classes to visit automatically.
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.TYPE})
    public @interface VisitForInstrumentation {
        Class<?>[] value();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top