Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for impacted (0.23 sec)

  1. guava/src/com/google/common/util/concurrent/Futures.java

       * the output future list. (Such races are impossible to solve without global synchronization of
       * all future completions. And they should have little practical impact.)
       *
       * <p>Cancelling a delegate future propagates to input futures once all the delegates complete,
       * either from cancellation or because an input future has completed. If N futures are passed in,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    	"io"
    	"math/big"
    	"net"
    	"net/url"
    	"strconv"
    	"time"
    	"unicode"
    
    	// Explicitly import these for their crypto.RegisterHash init side-effects.
    	// Keep these as blank imports, even if they're imported above.
    	_ "crypto/sha1"
    	_ "crypto/sha256"
    	_ "crypto/sha512"
    
    	"golang.org/x/crypto/cryptobyte"
    	cryptobyte_asn1 "golang.org/x/crypto/cryptobyte/asn1"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    		// due to clock bugs.
    		//
    		// In this case, just assume scavenging takes 10 µs per regular physical page
    		// (determined empirically), and conservatively ignore the impact of huge pages
    		// on timing.
    		const approxWorkedNSPerPhysicalPage = 10e3
    		if duration == 0 {
    			worked += approxWorkedNSPerPhysicalPage * float64(r/physPageSize)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    	// are empty. This should be ensured by gcMarkDone before we
    	// enter mark termination.
    	//
    	// TODO: We could clear out buffers just before mark if this
    	// has a non-negligible impact on STW time.
    	for _, p := range allp {
    		// The write barrier may have buffered pointers since
    		// the gcMarkDone barrier. However, since the barrier
    		// ensured all reachable objects were marked, all of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    	}
    	requirements = rs
    	if err := commitRequirements(ctx, WriteOpts{}); err != nil {
    		base.Fatal(err)
    	}
    
    	// Suggest running 'go mod tidy' unless the project is empty. Even if we
    	// imported all the correct requirements above, we're probably missing
    	// some sums, so the next build command in -mod=readonly will likely fail.
    	//
    	// We look for non-hidden .go files or subdirectories to determine whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_test.go

    								if len(tt.cfg) == 0 {
    									assert.Equal(t, "inbound_0.0.0.0_8080", hcm.GetStatPrefix(), "stat prefix")
    								} else {
    									// Sidecar impacts stat prefix
    									assert.Equal(t, "inbound_1.1.1.1_8080", hcm.GetStatPrefix(), "stat prefix")
    								}
    								assert.Equal(t, "APPEND_FORWARD", hcm.GetForwardClientCertDetails().String(), "forward client cert details")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	// If the user have configured the address to an interface on the node (but not a VS)
    	// then traffic will temporary be routed to ipvs during the probe and dropped.
    	// The later case is also and invalid configuration, but the traffic impact will be minor.
    	// This should not be a problem if users honors reserved addresses, but cut/paste
    	// from documentation is not unheard of, so the restriction to not use the TEST-NET-2 range
    	// must be documented.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. src/testing/testing.go

    //	    got := Abs(-1)
    //	    if got != 1 {
    //	        t.Errorf("Abs(-1) = %d; want 1", got)
    //	    }
    //	}
    //
    // If the file is in a separate "_test" package, the package being tested
    // must be imported explicitly and only its exported identifiers may be used.
    // This is known as "black box" testing.
    //
    //	package abs_test
    //
    //	import (
    //		"testing"
    //
    //		"path_to_pkg/abs"
    //	)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

        int hash = hash(key);
        return segmentFor(hash).get(key, hash);
      }
    
      /**
       * Returns the internal entry for the specified key. The entry may be computing or partially
       * collected. Does not impact recency ordering.
       */
      @CheckForNull
      E getEntry(@CheckForNull Object key) {
        if (key == null) {
          return null;
        }
        int hash = hash(key);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // First, let's unpack all the body arguments.
      auto UnpackArgs = [&body_args](std::vector<int>& indexes) {
        // This helper makes it easy to unpack "natural" vectors of values while
        // still respecting the impact of deduping.
        std::vector<Value> slice;
        int num = indexes.size();
        slice.reserve(num);
        for (auto i : indexes) slice.push_back(body_args[i]);
        return slice;
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top