Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 471 for Initial (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

                                                        operands_constraints)))
          return operands_constraints.Resolve();
      }
    
      return std::nullopt;
    }
    
    // Compute initial clustering state based on the clustering polocy.
    static ClusteringState InitializeClusteringState(
        Block *block, const ClusteringPolicySet &policies,
        const std::function<bool(Operation *op)> &filter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. pkg/test/framework/test.go

    		}
    	}
    
    	start := time.Now()
    	scopes.Framework.Infof("=== BEGIN: Test: '%s[%s]' ===", rt.suiteContext().Settings().TestID, t.goTest.Name())
    
    	// Initial setup if we're running in Parallel.
    	if parallel {
    		// Run the underlying Go test in parallel. This will not return until the parent
    		// test (if there is one) exits.
    		t.goTest.Parallel()
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         * but an implemantation that encorporates the transport header(for
         * efficiency) might use a different initial bufferIndex. For example,
         * to eliminate copying data when writing NbtSession data one might
         * manage that 4 byte header specifically and therefore the initial
         * bufferIndex, and thus headerStart, would be 4).(NOTE: If one where
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/bitmap_test.go

    	_, clusterCIDRv6, _ := netutils.ParseCIDRSloppy(cidrIPv6)
    	b, err := NewInMemory(clusterCIDRv6)
    	b.EnableMetrics()
    	if err != nil {
    		t.Fatalf("unexpected error creating CidrSet: %v", err)
    	}
    
    	// Check initial state
    	em := testMetrics{
    		free:      0,
    		used:      0,
    		allocated: 0,
    		errors:    0,
    	}
    	expectMetrics(t, cidrIPv4, em)
    	em = testMetrics{
    		free:      0,
    		used:      0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CompactHashSet.java

        CompactHashSet<E> set = createWithExpectedSize(elements.length);
        Collections.addAll(set, elements);
        return set;
      }
    
      /**
       * Creates a {@code CompactHashSet} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without growth.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    // A file is a counter file.
    type file struct {
    	// Linked list of all known counters.
    	// (Linked list insertion is easy to make lock-free,
    	// and we don't want the initial counters incremented
    	// by a program to cause significant contention.)
    	counters atomic.Pointer[Counter] // head of list
    	end      Counter                 // list ends at &end instead of nil
    
    	mu         sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

    
        /**
         * @return the common/negotiated capabilieis
         */
        public final int getCommonCapabilities () {
            return this.commonCapabilities;
        }
    
    
        /**
         * @return initial security blob
         */
        public byte[] getSecurityBlob () {
            return this.securityBuffer;
        }
    
    
        /**
         * @return the maxTransactSize
         */
        public int getMaxTransactSize () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 22 10:09:46 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/worker.go

    	container v1.Container
    
    	// Describes the probe configuration (read-only)
    	spec *v1.Probe
    
    	// The type of the worker.
    	probeType probeType
    
    	// The probe value during the initial delay.
    	initialValue results.Result
    
    	// Where to store this workers results.
    	resultsManager results.Manager
    	probeManager   *manager
    
    	// The last known container ID for this worker.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    func shouldRecordWatchListLatency(event watch.Event) bool {
    	if event.Type != watch.Bookmark || !utilfeature.DefaultFeatureGate.Enabled(features.WatchList) {
    		return false
    	}
    	// as of today the initial-events-end annotation is added only to a single event
    	// by the watch cache and only when certain conditions are met
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/CompactLinkedHashMap.java

          CompactLinkedHashMap<K, V> create() {
        return new CompactLinkedHashMap<>();
      }
    
      /**
       * Creates a {@code CompactLinkedHashMap} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without rebuilding internal data structures.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top