Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 193 for EG (0.02 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginArtifactRepositories.java

        public DefaultPluginArtifactRepositories(Factory<DependencyResolutionServices> factory, RepositoryHandlerInternal sharedRepositories) {
            // Create a copy of the shared repository container, so that mutations (eg adding the portal repo) are not reflected in the shared container
            dependencyResolutionServices = factory.create();
            this.sharedRepositories = sharedRepositories;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/analysis/analysis.proto

      bool unknown_dialect = 1;
      bool ref_variable = 2;
      bool incompatible_variable = 3;
      bool incompatible_attribute = 4;
      bool control_flow_v1 = 5;
      string method_name = 6;
    
      // TODO(chky): add more checks, eg. tensor datatypes.
    }
    
    message CompatibilityAnalysisProto {
      CompatibilityAnalysisReportProto summary = 1;
    
      message OpInfo {
        int32 count = 1;
    
        CompatibilityAnalysisReportProto report = 2;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 20:56:11 UTC 2021
    - 533 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/README.md

    These act like most other Resources in Kubernetes, and may be `kubectl apply`'d, etc.
    
    Some example use cases:
    
    * Provisioning/Management of external datastores/databases (eg. CloudSQL/RDS instances)
    * Higher level abstractions around Kubernetes primitives (eg. a single Resource to define an etcd cluster, backed by a Service and a ReplicationController)
    
    ## Defining types
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtDeclarationSymbol.kt

    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaSymbolWithTypeParameters
    
    /**
     * Represents a symbol of declaration which can be directly expressed in source code.
     * Eg, classes, type parameters or functions are [KaDeclarationSymbol], but files and packages are not
     */
    public sealed interface KaDeclarationSymbol : KaSymbol, KaSymbolWithTypeParameters, KaAnnotatedSymbol
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 779 bytes
    - Viewed (0)
  5. test/codegen/README

    should be run:
    
    * Specify only the architecture (eg: "amd64"). This indicates that the
      check should be run on all the supported architecture variants. For
      instance, arm checks will be run against all supported GOARM
      variations (5,6,7).
    * Specify both the architecture and a variant, separated by a slash
      (eg: "arm/7"). This means that the check will be run only on that
      specific variant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/ExecutionAccessListener.java

    @EventScope(Scope.BuildTree.class)
    public interface ExecutionAccessListener {
    
        /**
         * Called when accessing the injected service of type that disallowed during execution phase (eg. Project).
         */
        void disallowedAtExecutionInjectedServiceAccessed(Class<?> injectedServiceType, String getterName, String consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/NativeIntegrationUnavailableException.java

     * limitations under the License.
     */
    package org.gradle.internal.nativeintegration;
    
    /**
     * Thrown when the native integration for the current platform is not available for some reason (eg unsupported operating system, cannot load native library, etc).
     */
    public class NativeIntegrationUnavailableException extends NativeIntegrationException {
        public NativeIntegrationUnavailableException(String message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1023 bytes
    - Viewed (0)
  8. src/runtime/netpoll_stub.go

    		noteclear(&netpollNote)
    		netpollBroken = false
    		unlock(&netpollBrokenLock)
    
    		notetsleep(&netpollNote, delay)
    		unlock(&netpollStubLock)
    		// Guard against starvation in case the lock is contended
    		// (eg when running TestNetpollBreak).
    		osyield()
    	}
    	return gList{}, 0
    }
    
    func netpollinited() bool {
    	return netpollInited.Load() != 0
    }
    
    func netpollAnyWaiters() bool {
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationDescriptor.java

         * operation, and should describe the operation whether currently running or not, eg "Run test A" rather than
         * "Running test A".
         */
        public String getDisplayName() {
            return displayName;
        }
    
        /**
         * Returns the display name to use for progress logging for the operation. Should be short and describe the operation
         * as it is running, eg "Running test A" rather than "Run test A".
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonsFixture.java

         */
        List<? extends DaemonFixture> getDaemons();
    
        /**
         * Returns all daemons that are visible to clients. May include daemons that are no longer running (eg they have crashed).
         */
        List<? extends DaemonFixture> getVisible();
    
        /**
         * Convenience to get a single daemon. Fails if there is not exactly 1 daemon.
         */
        DaemonFixture getDaemon();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top