Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,043 for Unregistered (0.2 sec)

  1. android/guava/src/com/google/common/eventbus/EventBus.java

       */
      public void register(Object object) {
        subscribers.register(object);
      }
    
      /**
       * Unregisters all subscriber methods on a registered {@code object}.
       *
       * @param object object whose subscriber methods should be unregistered.
       * @throws IllegalArgumentException if the object was not previously registered.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
  2. pilot/pkg/status/distribution/reporter.go

    	if nonce == "" {
    		return
    	}
    	// Skip unsupported event types. This ensures we do not leak memory for types
    	// which may not be handled properly. For example, a type not in AllEventTypes
    	// will not be properly unregistered.
    	if _, f := xds.AllTrackingEventTypes[distributionType]; !f {
    		return
    	}
    	d := distributionEvent{nonce: nonce, distributionType: distributionType, conID: conID}
    	select {
    	case r.distributionEventQueue <- d:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

    // RUN: tf-quant-opt %s -quant-insert-main-function -mlir-disable-threading \
    // RUN:     -allow-unregistered-dialect -split-input-file | FileCheck %s
    
    // CHECK-LABEL: module attributes {tf.versions = {producer = 930 : i32}, tf_saved_model.semantics, tfl.description = "MLIR Converted.", tfl.schema_version = 3 : i32}  {
    module attributes {tf.versions = {producer = 930 : i32}, tf_saved_model.semantics, tfl.description = "MLIR Converted.", tfl.schema_version = 3 : i32}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/unfreeze_constants.mlir

    // RUN: tf-quant-opt %s -quant-unfreeze-constants='size_threshold_in_bytes=16' \
    // RUN:     -allow-unregistered-dialect -mlir-disable-threading \
    // RUN:     -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests a case with one ConstOp and a tf_saved_model.session_initializer with an empty initializers.
    module attributes {tf_saved_model.semantics} {
    
      "tf_saved_model.session_initializer"() {initializers = []} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

    // tf_executor::NextIterationSinkOp to break the cycle introduced by itself.
    static void SplitNextIteration(Block &block) {
      // TODO(b/207144333): Supports callback for unregistered ops
      block.walk([&](Operation *op) {
        if (op->getName().getStringRef() != "tfg.NextIteration") return;
        mlir::OpBuilder builder(op);
    
        llvm::SmallVector<Value, 2> new_operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

                    file("second-file").text = "leftover file"
                }
            }
            'file'                    | { TestFile output -> output.text = 'leftover file' }
        }
    
        def "unregistered stale outputs (#nonRegisteredDirectory) are not removed before task executes"() {
            def fixture = new StaleOutputFixture(buildDir: nonRegisteredDirectory)
            fixture.createInputs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/tests/decompose.mlir

    // CHECK:   "tf.Select"
    }
    
    // CHECK-LABEL: denied_attribute
    func.func @denied_attribute(%arg0: tensor<1x2x3x4x!tf_type.string>, %arg1: tensor<f32>, %arg2: tensor<f32>) -> tensor<f32> {
      // expected-error@+1 {{Denied unregistered attribute was found: denied_attr}}
      %0:2 = "tf.FusedN"(%arg0, %arg1, %arg2) {A=0:index, denied_attr} : (tensor<1x2x3x4x!tf_type.string>, tensor<f32>, tensor<f32>) -> (tensor<1x2x3x4x!tf_type.string>, tensor<f32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/controller.go

    	// cleanup is to delete the workload entry
    
    	// queue contains workloadEntry that need to be unregistered
    	queue controllers.Queue
    	// cleanupLimit rate limit's auto registered WorkloadEntry cleanup calls to k8s
    	cleanupLimit *rate.Limiter
    	// cleanupQueue delays the cleanup of auto registered WorkloadEntries to allow for grace period
    	cleanupQueue queue.Delayed
    
    	adsConnections        *adsConnections
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	defaulterFuncs map[reflect.Type]func(interface{})
    
    	// converter stores all registered conversion functions. It also has
    	// default converting behavior.
    	converter *conversion.Converter
    
    	// versionPriority is a map of groups to ordered lists of versions for those groups indicating the
    	// default priorities of these versions as registered in the scheme
    	versionPriority map[string][]string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/scoring.go

    		}
    		adjValues[adj] = val
    	}
    	return nil
    }
    
    func adjValue(x scoreAdjustTyp) int {
    	if val, ok := adjValues[x]; ok {
    		return val
    	} else {
    		panic("internal error unregistered adjustment type")
    	}
    }
    
    var mayMustAdj = [...]struct{ may, must scoreAdjustTyp }{
    	{may: passConstToNestedIfAdj, must: passConstToIfAdj},
    	{may: passConcreteToNestedItfCallAdj, must: passConcreteToItfCallAdj},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top