Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for NOOP (0.03 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

    // This pass moves all ops from initializer functions to the main function. A
    // new `tf.NoOp` that has control dependency to the initializer function for
    // non-variable resources will be created. The control output of the new
    // `tf.NoOp` will be merged into the main function's `FetchOp`.
    class MergeInitializerFunctionOpsToMainPass
        : public PassWrapper<MergeInitializerFunctionOpsToMainPass,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

          }
        }
      });
    }
    
    // tf.NoOp islands are used to combine multiple control dependencies into one.
    // These islands have a single tf.NoOp inside them and consume multiple control
    // outputs to generate a single control output.
    //
    // For example,
    // ```
    // %merged_control = "tf_executor.island"(%control_a, %control_b) ({
    //   "tf.NoOp"() : () -> ()
    //   "tf_executor.yield"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. pkg/proxy/config/config.go

    	OnNodeSynced()
    }
    
    // NoopNodeHandler is a noop handler for proxiers that have not yet
    // implemented a full NodeHandler.
    type NoopNodeHandler struct{}
    
    // OnNodeAdd is a noop handler for Node creates.
    func (*NoopNodeHandler) OnNodeAdd(node *v1.Node) {}
    
    // OnNodeUpdate is a noop handler for Node updates.
    func (*NoopNodeHandler) OnNodeUpdate(oldNode, node *v1.Node) {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. cmd/kubemark/app/hollow_node.go

    		if err != nil {
    			return fmt.Errorf("Failed to init runtime service, error: %w", err)
    		}
    
    		var imageService internalapi.ImageManagerService = fakeRemoteRuntime.ImageService
    		if config.UseHostImageService {
    			imageService, err = remote.NewRemoteImageService(c.ImageServiceEndpoint, 15*time.Second, noop.NewTracerProvider(), &logger)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

    		old    *unstructured.Unstructured
    		schema apiextensions.JSONSchemaProps
    		iters  int // how many times to validate the same update before checking metric
    		want   string
    	}{
    		{
    			desc: "valid noop update",
    			obj: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"foo": "bar",
    				},
    			},
    			old: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"foo": "bar",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/net/smtp/smtp.go

    		return err
    	}
    	_, _, err := c.cmd(250, "RSET")
    	return err
    }
    
    // Noop sends the NOOP command to the server. It does nothing but check
    // that the connection to the server is okay.
    func (c *Client) Noop() error {
    	if err := c.hello(); err != nil {
    		return err
    	}
    	_, _, err := c.cmd(250, "NOOP")
    	return err
    }
    
    // Quit sends the QUIT command and closes the connection to the server.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. pkg/wasm/convert.go

    				if err != nil {
    					if !wasmHTTPConfig.GetConfig().GetFailOpen() {
    						convertErrs[i] = err
    						return
    					}
    					// Use NOOP filter because the download failed.
    					newExtensionConfig, err = createHTTPAllowAllFilter(extConfig.GetName())
    					if err != nil {
    						// If the fallback is failing, send the Nack regardless of fail_open.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

          // ops have no other uses or have one NoOp only, they can be simply
          // erased.
          auto &operations = init_func_op.front().getOperations();
          if ((operations.size() == 1 &&
               operations.front().hasTrait<OpTrait::IsTerminator>()) ||
              (operations.size() == 2 &&
               dyn_cast<mlir::TF::NoOp>(operations.front()) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

                return new DefaultDomainObjectCollectionFactory(instantiatorFactory, services, CollectionCallbackActionDecorator.NOOP, MutationGuards.identity());
            }
    
            @Provides
            ClassPathRegistry createClassPathRegistry(DefaultModuleRegistry moduleRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/options/options_test.go

    package options
    
    import (
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"github.com/spf13/pflag"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	"k8s.io/apiserver/pkg/admission"
    	apiserveroptions "k8s.io/apiserver/pkg/server/options"
    	"k8s.io/apiserver/pkg/storage/etcd3"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top