Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,543 for constructs (0.11 sec)

  1. android/guava/src/com/google/common/collect/HashMultimap.java

        return new HashMultimap<>(expectedKeys, expectedValuesPerKey);
      }
    
      /**
       * Constructs a {@code HashMultimap} with the same mappings as the specified multimap. If a
       * key-value mapping appears multiple times in the input multimap, it only appears once in the
       * constructed multimap.
       *
       * <p>This method will soon be deprecated in favor of {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_git_missing_tree.txt

    # Regression test for https://go.dev/issue/65339.
    # Unnecessary git tree object required
    
    [short] skip 'constructs a local git repo'
    [!git] skip
    
    env GIT_AUTHOR_NAME='Go Gopher'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    # Create 2 commit
    env GIT_COMMITTER_DATE=2024-01-30T10:52:00+08:00
    env GIT_AUTHOR_DATE=2024-01-30T10:52:00+08:00
    
    cd $WORK/repo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/union_gauge.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package metrics
    
    type unionGauge []Gauge
    
    var _ Gauge = unionGauge(nil)
    
    // NewUnionGauge constructs a Gauge that delegates to all of the given Gauges
    func NewUnionGauge(elts ...Gauge) Gauge {
    	return unionGauge(elts)
    }
    
    func (ug unionGauge) Set(x float64) {
    	for _, gauge := range ug {
    		gauge.Set(x)
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:37:20 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/CustomComparisonFailure.java

     */
    
    package org.gradle.api.internal.tasks.testing.failure.mappers;
    
    import junit.framework.ComparisonFailure;
    
    public class CustomComparisonFailure extends ComparisonFailure {
    
        /**
         * Constructs a comparison failure.
         *
         * @param message  the identifying message or null
         * @param expected the expected string value
         * @param actual   the actual string value
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/wasm.go

    package model
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	wasm "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    )
    
    // ConstructVMConfig constructs a VM config.
    func ConstructVMConfig(name string) *wasm.PluginConfig_VmConfig {
    	return &wasm.PluginConfig_VmConfig{
    		VmConfig: &wasm.VmConfig{
    			Runtime: "envoy.wasm.runtime.null",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/factory.go

    		return factory
    	}
    }
    
    // NewSharedInformerFactory constructs a new instance of sharedInformerFactory for all namespaces.
    func NewSharedInformerFactory(client versioned.Interface, defaultResync time.Duration) SharedInformerFactory {
    	return NewSharedInformerFactoryWithOptions(client, defaultResync)
    }
    
    // NewFilteredSharedInformerFactory constructs a new instance of sharedInformerFactory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 18:31:26 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/factory.go

    		return factory
    	}
    }
    
    // NewSharedInformerFactory constructs a new instance of sharedInformerFactory for all namespaces.
    func NewSharedInformerFactory(client clientset.Interface, defaultResync time.Duration) SharedInformerFactory {
    	return NewSharedInformerFactoryWithOptions(client, defaultResync)
    }
    
    // NewFilteredSharedInformerFactory constructs a new instance of sharedInformerFactory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 18:31:26 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoFailureException.java

            this.source = source;
            this.longMessage = longMessage;
        }
    
        /**
         * Construct a new <code>MojoFailureException</code> exception providing a message.
         *
         * @param message
         */
        public MojoFailureException(String message) {
            super(message);
        }
    
        /**
         * Construct a new <code>MojoFailureException</code> exception wrapping an underlying <code>Throwable</code>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/OneSizeTestContainerGenerator.java

     * particular {@link CollectionSize}.
     *
     * <p>This interface should not be implemented outside this package; {@link
     * PerCollectionSizeTestSuiteBuilder} constructs instances of it from a more general {@link
     * TestCollectionGenerator}.
     *
     * @author George van den Driessche
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/FinalizableWeakReference.java

     * @since 2.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class FinalizableWeakReference<T> extends WeakReference<T>
        implements FinalizableReference {
      /**
       * Constructs a new finalizable weak reference.
       *
       * @param referent to weakly reference
       * @param queue that should finalize the referent
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top