Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 266 for somme (0.05 sec)

  1. src/runtime/pprof/pprof_test.go

    						t.Logf("pN SampleType[%d]; %q != %q", i, have, want)
    						ok = false
    					}
    				}
    
    				// cpuHog1 called below is the primary source of CPU
    				// load, but there may be some background work by the
    				// runtime. Since the OS rusage measurement will
    				// include all work done by the process, also compare
    				// against all samples in our profile.
    				var value time.Duration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (SecurityException e) {
          generateCancellationCauses = false;
        }
        GENERATE_CANCELLATION_CAUSES = generateCancellationCauses;
      }
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (SecurityException e) {
          generateCancellationCauses = false;
        }
        GENERATE_CANCELLATION_CAUSES = generateCancellationCauses;
      }
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. tests/integration/ambient/baseline_test.go

    func TestL7Telemetry(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(tc framework.TestContext) {
    			// ensure that some traffic from each captured workload is
    			// sent to each waypoint proxy. This will likely have happened in
    			// the other tests (without the teardown), but we want to make
    			// sure that some traffic is seen. This test will not validate
    			// exact traffic counts, but rather focus on validating that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	if err != nil {
    		t.Fatalf("Couldn't create cacher: %v", err)
    	}
    	defer cacher.Stop()
    
    	ctx, cancel := context.WithCancel(context.Background())
    	// Cancel the watch after some time to check if it will properly
    	// terminate instead of hanging forever.
    	go func() {
    		defer cancel()
    		cacher.clock.Sleep(1 * time.Second)
    	}()
    
    	// Watch hangs waiting on watchcache being initialized.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// ----------------------------------------------------------------------------
    ///
    /// The following data structures represent the function tables for operations
    /// that plugins provide (some are mandatory, some are optional, with or without
    /// a default implementation).
    ///
    /// Each plugin implements the operations that are supported and TensorFlow will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    //   (2) x = Op ...
    //   (3) ... = Op v ...
    //
    // post-regalloc:
    //   (1) v = Op ...    : AX // computes v, store result in AX
    //       s = StoreReg v     // spill v to a stack slot
    //   (2) x = Op ...    : AX // some other op uses AX
    //       c = LoadReg s : CX // restore v from stack slot
    //   (3) ... = Op c ...     // use the restored value
    //
    // Allocation occurs normally until we reach (3) and we realize we have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. src/net/url/url_test.go

    		{"[::1]:80", "::1", "80"},
    		{"[::1]", "::1", ""},
    		{"[::1]:", "::1", ""},
    		{"localhost", "localhost", ""},
    		{"localhost:443", "localhost", "443"},
    		{"some.super.long.domain.example.org:8080", "some.super.long.domain.example.org", "8080"},
    		{"[2001:0db8:85a3:0000:0000:8a2e:0370:7334]:17000", "2001:0db8:85a3:0000:0000:8a2e:0370:7334", "17000"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        // lifting for that resource.
        if (unsupported_use) continue;
    
        info.is_written_all = written_regions.count() == op_->getNumRegions();
    
        // If the resource is written in some but not all regions, we would need
        // a read for the value before these regions. Note that this is applicable
        // only to multi-region ops:
        // If/Case: If not all regions write to the resource, post hoisting the read
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    		} else if bind.bindToPort {
    			bind.binds = actualLocalHosts
    		}
    
    		if egressListener.IstioListener != nil &&
    			egressListener.IstioListener.Port != nil {
    			// We have a non catch all listener on some user specified port
    			// The user specified port may or may not match a service port.
    			// If it does not match any service port and the service has only
    			// one port, then we pick a default service port. If service has
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top