Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,005 for predates (0.31 sec)

  1. android/guava/src/com/google/common/graph/AbstractGraphBuilder.java

      Optional<Integer> expectedNodeCount = Optional.absent();
    
      /**
       * Creates a new instance with the specified edge directionality.
       *
       * @param directed if true, creates an instance for graphs whose edges are each directed; if
       *     false, creates an instance for graphs whose edges are each undirected.
       */
      AbstractGraphBuilder(boolean directed) {
        this.directed = directed;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/DescribablesTest.groovy

            value.capitalizedDisplayName == "F two three"
        }
    
        def "creates from type and name"() {
            expect:
            def value = Describables.withTypeAndName("some type", "name")
            value.displayName == "some type 'name'"
            value.toString() == "some type 'name'"
            value.capitalizedDisplayName == "Some type 'name'"
        }
    
        def "creates from description and value"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         */
        void finalizeIncludedBuilds();
    
        /**
         * Creates an included build. An included build is-a nested build whose projects and outputs are treated as part of the composite build.
         */
        IncludedBuildState addIncludedBuild(BuildDefinition buildDefinition);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLoggerFactory.java

    @ServiceScope(Scope.Global.class)
    public interface ProgressLoggerFactory {
        /**
         * Creates a new long-running operation which has not been started.
         *
         * @param loggerCategory The logger category.
         * @return The progress logger for the operation.
         */
        ProgressLogger newOperation(String loggerCategory);
    
        /**
         * Creates a new long-running operation which has not been started.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. pkg/scheduler/testing/wrappers.go

    	return p
    }
    
    // Toleration creates a toleration (with the operator Exists)
    // and injects into the inner pod.
    func (p *PodWrapper) Toleration(key string) *PodWrapper {
    	p.Spec.Tolerations = append(p.Spec.Tolerations, v1.Toleration{
    		Key:      key,
    		Operator: v1.TolerationOpExists,
    	})
    	return p
    }
    
    // HostPort creates a container with a hostPort valued `hostPort`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Atomics.java

    public final class Atomics {
      private Atomics() {}
    
      /**
       * Creates an {@code AtomicReference} instance with no initial value.
       *
       * @return a new {@code AtomicReference} with no initial value
       */
      public static <V> AtomicReference<@Nullable V> newReference() {
        return new AtomicReference<>();
      }
    
      /**
       * Creates an {@code AtomicReference} instance with the given initial value.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 10:45:35 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Atomics.java

    public final class Atomics {
      private Atomics() {}
    
      /**
       * Creates an {@code AtomicReference} instance with no initial value.
       *
       * @return a new {@code AtomicReference} with no initial value
       */
      public static <V> AtomicReference<@Nullable V> newReference() {
        return new AtomicReference<>();
      }
    
      /**
       * Creates an {@code AtomicReference} instance with the given initial value.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 10:45:35 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodePredicate.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core;
    
    import com.google.common.base.Predicate;
    import com.google.common.base.Predicates;
    import org.gradle.model.internal.type.ModelType;
    
    import javax.annotation.Nullable;
    
    /**
     * Criteria for selecting the descendants of a particular node.
     */
    public abstract class NodePredicate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/apiextensions_client.go

    	return &ApiextensionsV1beta1Client{client}, nil
    }
    
    // NewForConfigOrDie creates a new ApiextensionsV1beta1Client for the given config and
    // panics if there is an error in the config.
    func NewForConfigOrDie(c *rest.Config) *ApiextensionsV1beta1Client {
    	client, err := NewForConfig(c)
    	if err != nil {
    		panic(err)
    	}
    	return client
    }
    
    // New creates a new ApiextensionsV1beta1Client for the given RESTClient.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 04:39:39 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/FunctionsTest.java

        Predicate<? super Integer> h = Predicates.equalTo(42);
        Function<? super String, Integer> g = new HashCodeFunction();
        Function<Float, String> f = Functions.forMap(m, "F");
    
        Predicate<Float> p1 = Predicates.compose(Predicates.compose(h, g), f);
        Predicate<Float> p2 = Predicates.compose(h, Functions.compose(g, f));
    
        // Might be nice (eventually) to have:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top