Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 396 for Unregistered (0.17 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

            and:
            output.contains "name: things"
            output.contains "display-name: ModelMap<Thing> 'things'"
            output.contains "to-string: ModelMap<Thing> 'things'"
        }
    
        def "cannot add unregistered type to specialized model map"() {
            buildFile << """
            @Managed interface SampleComponent extends ComponentSpec {}
            interface NonRegisteredComponent extends ComponentSpec {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        return "Decompose TF ops with the registered composition library.";
      }
    
      void runOnOperation() override;
    
     private:
      // Apply canonicalization, mainly constant folding, on the function.
      void ApplyCanonicalization();
    
      // Rewrite unregistered TF ops to TFR func call ops. Return failure if all the
      // ops are registered or the compose function doesn't exist.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. src/internal/trace/testtrace/validation.go

    				}
    				state.state = new
    			} else {
    				if old != trace.GoUndetermined && old != trace.GoNotExist {
    					e.Errorf("bad old state for unregistered goroutine %d: %s", id, old)
    				}
    				state = &goState{state: new}
    				v.gs[id] = state
    			}
    			// Validate sched context.
    			if new.Executing() {
    				ctx := v.getOrCreateThread(e, ev, ev.Thread())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/plugin/noderesources.go

    // removePlugin is called whenever a plugin has been unregistered.
    func (c *nodeResourcesController) removePlugin(driverName string) {
    	if c == nil {
    		return
    	}
    
    	klog.FromContext(c.ctx).V(2).Info("Removing plugin", "driverName", driverName)
    	c.mutex.Lock()
    	defer c.mutex.Unlock()
    	if active, ok := c.activePlugins[driverName]; ok {
    		active.cancel(errors.New("plugin has unregistered"))
    		delete(c.activePlugins, driverName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    				if plugin.SocketPath == socketPath {
    					return false, nil
    				}
    			}
    			return true, nil
    		},
    	)
    
    	if err != nil {
    		t.Fatalf("Timed out waiting for plugin to be unregistered:\n%s.", socketPath)
    	}
    }
    
    func retryWithExponentialBackOff(initialDuration time.Duration, fn wait.ConditionFunc) error {
    	backoff := wait.Backoff{
    		Duration: initialDuration,
    		Factor:   3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/localize_var_handles.mlir

    // RUN: tf-opt %s -allow-unregistered-dialect --tf-localize-var-handles --split-input-file | FileCheck %s
    
    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
      "tf_saved_model.global_tensor"() { is_mutable, sym_name = "v", type = tensor<10xf32>, value = dense<[0.,1.,2.,3.,4.,5.,6.,7.,8.,9.]> : tensor<10xf32> } : () -> ()
      // CHECK-LABEL: @read_from_global
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 21:12:02 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    // HLO-level inputs are supplied, and HLO-level outputs are produced.
    // xla_params is the HLO-level inputs and returns is the HLO-level outputs.
    // If unconditionally_use_output_shapes is true then the unregistered
    // attribute _output_shapes is always used to set the output shapes of the ops.
    ABSL_DEPRECATED(
        "Use v1/compile_tf_graph.h::CompileTensorflowGraphToHlo instead.")
    Status BuildHloFromGraph(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

        return absl::OkStatus();
      }
    
      // Collect all the registered attributes.
      llvm::DenseSet<llvm::StringRef> registered_attrs;
      registered_attrs.insert("name");
      registered_attrs.insert("device");
      for (const auto& attr_def : op_reg_data->op_def.attr()) {
        registered_attrs.insert(attr_def.name());
      }
      // Attributes are not in the registered attributes set will be ignored.
      for (auto& attr : inst->getAttrs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    				TypeMeta:    runtime.TypeMeta{APIVersion: "other/blah", Kind: "Test"},
    				Raw:         []byte(`{"test":"object"}`),
    				ContentType: runtime.ContentTypeJSON,
    			},
    		},
    
    		// unregistered objects can be decoded into directly
    		{
    			data:        []byte(`{"kind":"Test","apiVersion":"other/blah","value":1,"Other":"test"}`),
    			into:        &testDecodable{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops_invalid.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -allow-unregistered-dialect
    
    module attributes {tf_saved_model.semantics} {
    
      // expected-error@+1 {{unknown tf_saved_model dialect arg attribute 'tf_saved_model.not_a_real_arg_attr'}}
      func.func private @f(%arg0: tensor<f32> {tf_saved_model.not_a_real_arg_attr = 1 : i32}) {
        func.return
      }
    
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 14.1K bytes
    - Viewed (0)
Back to top