Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for _itable (0.21 sec)

  1. pilot/pkg/networking/core/cluster_tls_test.go

    			opts := &buildClusterOpts{
    				mutable: newClusterWrapper(&cluster.Cluster{
    					ClusterDiscoveryType: &cluster.Cluster_Type{Type: test.discoveryType},
    				}),
    				mesh: push.Mesh,
    			}
    			if test.h2 {
    				setH2Options(opts.mutable)
    			}
    			cb.applyUpstreamTLSSettings(opts, test.tls, test.mtlsCtx)
    
    			if test.expectTransportSocket && opts.mutable.cluster.TransportSocket == nil ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    // an Event manually if this isn't quite the right way to express
    // the contents of the event.
    func makeEvent(table *evTable, ctx schedCtx, typ event.Type, time Time, args ...uint64) Event {
    	ev := Event{
    		table: table,
    		ctx:   ctx,
    		base: baseEvent{
    			typ:  typ,
    			time: time,
    		},
    	}
    	copy(ev.base.args[:], args)
    	return ev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. configure.py

      config_info_line('v1', 'Build with TensorFlow 1 API instead of TF 2 API.')
    
      print('Preconfigured Bazel build configs to DISABLE default on features:')
      config_info_line('nogcp', 'Disable GCP support.')
      config_info_line('nonccl', 'Disable NVIDIA NCCL support.')
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            writeConfigureMethod(visitor, generatedType, firstProperty, writable);
            writeSetMethod(visitor, generatedType, firstProperty);
            writeTypeConvertingSetter(visitor, generatedType, viewClass, firstProperty);
    
            // TODO - this should be applied to all methods, including delegating methods
            writeReadOnlySetter(visitor, viewClass, writable, firstProperty);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  5. .bazelrc

    #     mkl:          Enable full mkl support.
    #     tensorrt:     Enable Tensorrt support.
    #     noaws:        Disable AWS S3 storage support
    #     nogcp:        Disable GCS support.
    #     nohdfs:       Disable hadoop hdfs support.
    #     nonccl:       Disable nccl support.
    #
    #
    # Remote build execution options (only configured to work with TF team projects for now.)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. hack/local-up-cluster.sh

      chmod a+r /etc/apt/keyrings/docker.gpg
    
      # shellcheck disable=SC2027 disable=SC2046
      echo \
        "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
        "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
        tee /etc/apt/sources.list.d/docker.list > /dev/null
    
      apt-get update
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. plugin/pkg/admission/resourcequota/admission_test.go

    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    	informerFactory := informers.NewSharedInformerFactory(kubeClient, 0)
    
    	// disable consumption of cpu unless there is a covering quota.
    	// disable consumption of cpu unless there is a covering quota.
    	config := &resourcequotaapi.Configuration{
    		LimitedResources: []resourcequotaapi.LimitedResource{
    			{
    				Resource:      "pods",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Protects mutable state in *impl_.  This is mutable as some const
      // methods need to lock it too.
      mutable internal::Mutex mutex_;
    
      // Opaque implementation object.  This field is never changed once
      // the object is constructed.  We don't mark it as const here, as
      // doing so will cause a warning in the constructor of UnitTest.
      // Mutable state in *impl_ is protected by mutex_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Sets.java

       *
       * @since 21.0
       */
      public static <E extends Enum<E>> Collector<E, ?, ImmutableSet<E>> toImmutableEnumSet() {
        return CollectCollectors.toImmutableEnumSet();
      }
    
      /**
       * Returns a new, <i>mutable</i> {@code EnumSet} instance containing the given elements in their
       * natural order. This method behaves identically to {@link EnumSet#copyOf(Collection)}, but also
       * accepts non-{@code Collection} iterables and empty iterables.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/BUILD

            "@com_google_absl//absl/types:optional",
        ],
    )
    
    cc_header_only_library(
        name = "flags_headers_only",
        features = [
            "-parse_headers",  # buildifier: disable=no-parse-headers
        ],
        deps = [":flags_headers"],
    )
    
    cc_library(
        name = "common",
        srcs = [
            "defs.cc",
        ],
        hdrs = [
            "defs.h",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
Back to top