Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for Discovered (0.52 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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