Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 151 for somme (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/modload/init.go

    	// needed. A package should set this if it would cause go.mod to be written
    	// multiple times (for example, 'go get' calls LoadPackages multiple times) or
    	// if it needs some other operation to be successful before go.mod and go.sum
    	// can be written (for example, 'go mod download' must download modules before
    	// adding sums to go.sum). Packages that set this are responsible for calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	//   allocation and its own reservedFor entry.
    	// - The assume cache is now not reflecting that the claim is allocated,
    	//   which could lead to reusing the same resource for some other claim.
    	//
    	// A sync.Map is used because in practice sharing of a claim between
    	// pods is expected to be rare compared to per-pod claim, so we end up
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. src/time/time.go

    //
    // On some systems the monotonic clock will stop if the computer goes to sleep.
    // On such a system, t.Sub(u) may not accurately reflect the actual
    // time that passed between t and u. The same applies to other functions and
    // methods that subtract times, such as [Since], [Until], [Before], [After],
    // [Add], [Sub], [Equal] and [Compare]. In some cases, you may need to strip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top