Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 880 for yFunction (0.22 sec)

  1. staging/src/k8s.io/api/apps/v1/zz_generated.prerelease-lifecycle.go

    package v1
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ControllerRevision) APILifecycleIntroduced() (major, minor int) {
    	return 1, 9
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildListenerFactoryTest.groovy

    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    import java.util.function.Function
    
    class BuildSrcBuildListenerFactoryTest extends Specification {
    
        def startParameter = Mock(StartParameterInternal)
        def projectState = Mock(ProjectState) {
            fromMutableState(_) >> { Function function -> function.apply(project) }
        }
        def project = Mock(ProjectInternal) {
            getOwner() >> projectState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podsecuritycontext.go

    }
    
    // WithSELinuxOptions sets the SELinuxOptions field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the SELinuxOptions field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BuildExperimentSpec.groovy

    import javax.annotation.Nullable
    import java.util.function.Function
    
    @CompileStatic
    @EqualsAndHashCode
    abstract class BuildExperimentSpec {
        final String displayName
        final String projectName
        final File workingDirectory
        @Nullable
        final Integer warmUpCount
        @Nullable
        final Integer invocationCount
        final ImmutableList<Function<InvocationSettings, BuildMutator>> buildMutators
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/MapMergeTester.java

      public void testAbsent() {
        assertEquals(
            "Map.merge(absent, value, function) should return value",
            v3(),
            getMap()
                .merge(
                    k3(),
                    v3(),
                    (oldV, newV) -> {
                      throw new AssertionFailedError(
                          "Should not call merge function if key was absent");
                    }));
        expectAdded(e3());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. maven-di/src/main/java/org/apache/maven/di/impl/Binding.java

     * under the License.
     */
    package org.apache.maven.di.impl;
    
    import java.lang.annotation.Annotation;
    import java.util.*;
    import java.util.function.Consumer;
    import java.util.function.Function;
    import java.util.function.Supplier;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    import org.apache.maven.di.Key;
    
    import static java.util.stream.Collectors.joining;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    // If called multiple times, the ImageID field is set to the value of the last call.
    func (b *ContainerStatusApplyConfiguration) WithImageID(value string) *ContainerStatusApplyConfiguration {
    	b.ImageID = &value
    	return b
    }
    
    // WithContainerID sets the ContainerID field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueCache.java

     */
    
    package org.gradle.internal.model;
    
    import java.util.Map;
    import java.util.function.Function;
    
    /**
     * A cache backed by calculated values. This map is thread-safe.
     */
    public interface CalculatedValueCache<K, V> {
    
        /**
         * @see Map#computeIfAbsent(Object, Function)
         */
        V computeIfAbsent(K key, Function<K, V> factory);
    
        /**
         * @see Map#clear()
         */
        void clear();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1014 bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimeFunctionResolver.kt

            receiverClass.memberFunctions.forEach { function ->
                // TODO: `convertBinding` is invoked here with the receiverClass passed as the receiver and non-resolved argument origins; this probably needs a different API shape
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 10:30:52 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodestatus.go

    	return &NodeStatusApplyConfiguration{}
    }
    
    // WithCapacity sets the Capacity field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Capacity field is set to the value of the last call.
    func (b *NodeStatusApplyConfiguration) WithCapacity(value v1.ResourceList) *NodeStatusApplyConfiguration {
    	b.Capacity = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top