Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Discovered (0.23 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromProperties.kt

    import kotlin.reflect.full.primaryConstructor
    
    
    /**
     * Extracts schema properties from Kotlin properties and Java getters returning the type [Property].
     * Ensures that the return types of these properties get discovered during type discovery.
     */
    internal
    class GradlePropertyApiAnalysisSchemaComponent : AnalysisSchemaComponent {
        private
        val propertyExtractor = GradlePropertyApiPropertyExtractor(isPublicAndRestricted)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/software/internal/DefaultSoftwareTypeRegistry.java

            if (softwareTypeImplementations != null) {
                throw new IllegalStateException("Cannot register a plugin after software types have been discovered");
            }
            pluginClasses.computeIfAbsent(registeringPluginClass, k -> new LinkedHashSet<>()).add(pluginClass);
        }
    
        private Set<SoftwareTypeImplementation<?>> discoverSoftwareTypeImplementations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:31 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/schemaFromGradleExtensions.kt

     *
     * Given that, introduces the following features in the schema:
     * * Type discovery ensuring that the types of the extensions get discovered and included in the schema (but just those types, not recursing)
     * * Function extractors which introduce configuring functions for the extensions
     *
     * If object conversion is enabled ([ifConversionSupported]):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

     * since watched directories can't be deleted on Windows.
     *
     * The build root directories are discovered as included builds are encountered at the start of a build, and then they are removed when the build finishes.
     *
     * This is the lifecycle for the watchable hierarchies:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/workloadentry_test.go

    						for _, weCluster := range weClusters {
    							t.ConfigKube(weCluster).Eval(apps.Namespace.Name(), map[string]interface{}{
    								// used so this WE doesn't get cross-cluster discovered
    								"clusterName": weCluster.Name(),
    								"testName":    strings.ReplaceAll(tc.name, " ", "-"),
    								"network":     tc.networkNameFunc(network),
    								"address":     tc.addressFunc(network),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

    import org.gradle.internal.service.ServiceRegistrationProvider;
    
    /**
     * Can be implemented by Gradle modules to provide services in various scopes.
     *
     * <p>Implementations are discovered using the JAR service locator mechanism (see {@link org.gradle.internal.service.ServiceLocator}).
     */
    @ServiceScope(Scope.Global.class)
    public interface GradleModuleServices extends ServiceRegistrationProvider {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/runtime/runtime.go

    			strings.Join(foundCRISockets, ", "))
    	}
    }
    
    // DetectCRISocket uses a list of known CRI sockets to detect one. If more than one or none is discovered, an error is returned.
    func DetectCRISocket() (string, error) {
    	return detectCRISocketImpl(isExistingSocket, defaultKnownCRISockets)
    }
    
    // SandboxImage returns the sandbox image used by the container runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/README.md

    ## Writing Analyzers
    
    ### 1. Create the code
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

    // control flow ops.
    // TODO(ashwinm): Move to iterative traversal.
    LogicalResult ResourceAnalyzer::AnalyzeRegion(Region& region) {
      // Avoid infinite recursion.
      if (!discovered_.insert(&region).second) {
        return success();
      }
    
      region.walk([&](Operation* op) {
        if (isa<TF::ReadVariableOp, func::ReturnOp, YieldOp>(op)) {
          return;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top