Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 246 for retractions (0.46 sec)

  1. android/guava/src/com/google/common/base/FinalizableReference.java

    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public interface FinalizableReference {
      /**
       * Invoked on a background thread after the referent has been garbage collected unless security
       * restrictions prevented starting a background thread, in which case this method is invoked when
       * new references are created.
       */
      void finalizeReferent();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ProjectionOnlyNodeInitializer.java

        public ProjectionOnlyNodeInitializer(ModelProjection... projections) {
            this.projections = projections;
        }
    
        @Override
        public Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor) {
            return ImmutableSetMultimap.<ModelActionRole, ModelAction>builder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractTaskSpec.groovy

            def task = TestUtil.create(temporaryFolder).createTask(TestTask, project, name)
            assertTrue(TestTask.isAssignableFrom(task.getClass()))
            return task
        }
    
        def "can add action to a task via Task.getActions() List"() {
            setup:
            def task = createTask("task")
            when:
            def actions = task.actions
            and:
            def action = Mock(Action)
    
            actions.add(action)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 22:32:34 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. plugin/pkg/admission/serviceaccount/admission_test.go

    										LocalObjectReference: api.LocalObjectReference{Name: "foo"},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    	// validate enforces restrictions on secret mounts when operation==create and subresource=='' or operation==update and subresource==ephemeralcontainers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/InternalTransformer.java

     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    /**
     * Equivalent to {@code Transformer}, but does not declare nullability due to Java 6 restrictions.
     *
     * <p>A {@code Transformer} transforms objects of type.</p>
     *
     * <p>Implementations are free to return new objects or mutate the incoming value.</p>
     *
     * @param <OUT> The type the value is transformed to.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/project/DefaultProjectConfigurationActionContainer.java

        @Override
        public void finished() {
            actions.clear();
        }
    
        @Override
        public List<Action<? super ProjectInternal>> getActions() {
            return actions;
        }
    
        @Override
        public void add(Action<? super ProjectInternal> action) {
            actions.add(action);
        }
    
        @Override
        public void add(Closure action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/configuration/project/ProjectConfigurationActionContainer.java

    /**
     * A container responsible for managing the configuration of a project.
     */
    public interface ProjectConfigurationActionContainer {
        void finished();
    
        Iterable<Action<? super ProjectInternal>> getActions();
    
        /**
         * Registers an action to execute to configure the project. Actions are executed in an arbitrary order.
         */
        void add(Action<? super ProjectInternal> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistration.java

        ModelRuleDescriptor getDescriptor();
    
        ModelPath getPath();
    
        /**
         * Actions that need to be registered when the node is registered.
         */
        Multimap<ModelActionRole, ? extends ModelAction> getActions();
    
        /**
         * Returns whether the registered node is hidden.
         */
        boolean isHidden();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    			// avoid anonymous interface cycles.
    			hash += 3*hashString(m.Name()) + 5*h.shallowHash(m.Type())
    		}
    
    		// Hash type restrictions.
    		terms, err := typeparams.InterfaceTermSet(t)
    		// if err != nil t has invalid type restrictions.
    		if err == nil {
    			hash += h.hashTermSet(terms)
    		}
    
    		return hash
    
    	case *types.Map:
    		return 9109 + 2*h.Hash(t.Key()) + 3*h.Hash(t.Elem())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/FinalizableReference.java

    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public interface FinalizableReference {
      /**
       * Invoked on a background thread after the referent has been garbage collected unless security
       * restrictions prevented starting a background thread, in which case this method is invoked when
       * new references are created.
       */
      void finalizeReferent();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top