Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 194 for noOp (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_bridge_v1/end_to_end.mlir

          %control_27 = tf_executor.island(%control_2, %control_26) wraps "tf.NoOp"() : () -> ()
          tf_executor.fetch %control_27 : !tf_executor.control
        }
        func.return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

                [apiUsingUsage(), apiUsingUsage("fromResolutionOf('compileClasspath')")],
                [runtimeUsingUsage(), runtimeUsingUsage("fromResolutionOf('runtimeClasspath')")]
            ].combinations() + [[allVariants(), noop()]])
        }
    
        def "dependency constraints which are unresolved are published as is"() {
            javaLibrary(mavenRepo.module("org.test", "foo", "1.0")).withModuleMetadata().publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/test/groovy/org/gradle/model/internal/core/DomainObjectCollectionBackedModelMapTest.groovy

            String name
        }
    
        def "reasonable error message when creating a non-constructible type"() {
            given:
            def backingCollection = new DefaultDomainObjectSet(SomeType, CollectionCallbackActionDecorator.NOOP)
            def instantiator = new DefaultPolymorphicNamedEntityInstantiator(SomeType, "the collection")
            instantiator.registerFactory(SomeType, new NamedDomainObjectFactory<SomeType>(){
                SomeType create(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/traces.go

    		if r.URL != nil {
    			trace.SpanFromContext(r.Context()).SetAttributes(semconv.HTTPTarget(r.URL.RequestURI()))
    		}
    		handler.ServeHTTP(w, r)
    	})
    	// With Noop TracerProvider, the otelhttp still handles context propagation.
    	// See https://github.com/open-telemetry/opentelemetry-go/tree/main/example/passthrough
    	return otelhttp.NewHandler(wrappedHandler, "KubernetesAPI", opts...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 15 01:42:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/call_xla_module_to_stablehlo.mlir

          %control_4 = tf_executor.island(%control_3) wraps "tf.NoOp"() {device = ""} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 21:25:51 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/rename_entrypoint_to_main.cc

          //   func @init_all_tables() attributes {tf_saved_model.exported_names = ["__tf_saved_model_session_initializer_init_all_tables"]} { // NOLINT
          //     "tf.NoOp"() {device = ""} : () -> ()
          //     return
          //   }
          // clang-format on
          for (auto attr : session_initializer.getInitializers()) {
            auto sym_attr = mlir::dyn_cast<FlatSymbolRefAttr>(attr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    limitations under the License.
    */
    
    package storagebackend
    
    import (
    	"time"
    
    	oteltrace "go.opentelemetry.io/otel/trace"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/server/egressselector"
    	"k8s.io/apiserver/pkg/storage/etcd3"
    	"k8s.io/apiserver/pkg/storage/value"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top