Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 388 for live0 (0.05 sec)

  1. subprojects/build-events/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
            because("Requires ':toolingApiBuilders': Event handlers are in the wrong place, and should live in this project")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/cache/scopes/BuildTreeScopedCacheBuilderFactory.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Factory for creating build tree scoped {@link org.gradle.cache.CacheBuilder}s. These typically live under the ~/.gradle directory of the root build
     * in the build tree.
     */
    @ServiceScope(Scope.BuildSession.class)
    public interface BuildTreeScopedCacheBuilderFactory extends ScopedCacheBuilderFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

     * @since 8.3
     */
    public interface ConfigurableFilePermissions extends FilePermissions {
    
        /**
         * Returns the permissions the owner of the file has for the file/directory.
         * <p>
         * The returned object is live, modifying it will change the user's permissions.
         * <p>
         * For further details on permissions see {@link ConfigurableUserClassFilePermissions}.
         */
        @Override
        ConfigurableUserClassFilePermissions getUser();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/scopes/BuildScopedCacheBuilderFactory.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Factory for creating build scoped {@link org.gradle.cache.CacheBuilder}s. These typically live under the ~/.gradle directory of the build.
     */
    @ServiceScope(Scope.Build.class)
    public interface BuildScopedCacheBuilderFactory extends ScopedCacheBuilderFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

        T getOrElse(T defaultValue);
    
        /**
         * Returns a new {@link Provider} whose value is the value of this provider transformed using the given function.
         *
         * <p>
         * The resulting provider will be live, so that each time it is queried, it queries the original (this) provider
         * and applies the transformation to the result. Whenever the original provider has no value, the new provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/types/InstrumentationTypeRegistry.java

         * Returns instrumented Gradle super types for a given type.
         *
         * Note: We currently return just types that uses {@link org.gradle.internal.instrumentation.api.annotations.InterceptInherited}
         * and their subtypes that live in the `org.gradle.` package.
         *
         * TODO: Rename to getInstrumentedSuperTypes();
         */
        Set<String> getSuperTypes(String type);
    
        boolean isEmpty();
    
        static InstrumentationTypeRegistry empty() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 15:43:35 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

                    fieldPath: spec.serviceAccountName
              - name: KUBECONFIG
                value: /var/run/secrets/remote/config
              # If you explicitly told us where ztunnel lives, use that.
              # Otherwise, assume it lives in our namespace
              # Also, check for an explicit ENV override (legacy approach) and prefer that
              # if present
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_platform_info.h

      DeviceType device_type_;
      se::Platform::Id platform_id_;
    
      // xla_device_metadata_ lives in the tensorflow::DeviceBase in which the
      // XlaLaunch/_XlaCompile/_XlaRun op is placed and thus does not die before the
      // XlaLaunch/_XlaCompile/_XlaRun OpKernel.
      const XlaDevice::Metadata* xla_device_metadata_;
    
      // pjrt_device_metadata_ lives in tensorflow::PjRtBaseDevice in which the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/cache/scopes/GlobalScopedCacheBuilderFactory.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    
    /**
     * Factory for creating global {@link org.gradle.cache.CacheBuilder}s. These typically live under the ~/.gradle/caches directory.
     */
    @ServiceScope(Scope.UserHome.class)
    public interface GlobalScopedCacheBuilderFactory extends ScopedCacheBuilderFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	// Look for a Pod using pvc in the Informer's cache. If one is found the
    	// correct decision to keep pvc is taken without doing an expensive live
    	// list.
    	logger := klog.FromContext(ctx)
    	if inUse, err := c.askInformer(logger, pvc); err != nil {
    		// No need to return because a live list will follow.
    		logger.Error(err, "")
    	} else if inUse {
    		return true, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top