Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 250 for NOOP (0.12 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryTasksCollectionTest.groovy

        def binary = Mock(BinarySpecInternal)
        def taskFactory = Mock(NamedEntityInstantiator)
        def tasks = new DefaultBinaryTasksCollection(binary, taskFactory, CollectionCallbackActionDecorator.NOOP)
        def task = Mock(Task)
    
        def "can create task"() {
            def action = Mock(Action)
            def task = Stub(Task)
    
            when:
            tasks.create("foo", DefaultTask, action)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/canonicalize_compile_and_replicate_attributes.mlir

        %control_5 = tf_executor.island(%control, %control_4) wraps "tf.NoOp"() : () -> ()
        tf_executor.fetch %control_5 : !tf_executor.control
      }
      func.return
    }
    
    // -----
    
    // CHECK-LABEL: func.func @convert_xla_must_compile
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 3.1K 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. pkg/controlplane/reconcilers/reconcilers.go

    	// RemoveEndpoints removes this apiserver's lease.
    	RemoveEndpoints(serviceName string, ip net.IP, endpointPorts []corev1.EndpointPort) error
    	// StopReconciling turns any later ReconcileEndpoints call into a noop.
    	StopReconciling()
    	// Destroy shuts down all internal structures.
    	// Destroy needs to be implemented in thread-safe way and be prepared for being
    	// called more than once.
    	Destroy()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 13:49:31 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultPublishArtifactSetTest.groovy

    class DefaultPublishArtifactSetTest extends Specification {
        final store = new DefaultDomainObjectSet<PublishArtifact>(PublishArtifact, CollectionCallbackActionDecorator.NOOP)
        final set = new DefaultPublishArtifactSet('artifacts', store, fileCollectionFactory(), TestFiles.taskDependencyFactory())
    
        def "set is built by the union of the tasks that build the publish artifacts"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/DefaultReportContainerTest.groovy

        static class TestReportContainer extends DefaultReportContainer {
            TestReportContainer(Closure c) {
                super(Report, TestUtil.instantiatorFactory().decorateLenient(), CollectionCallbackActionDecorator.NOOP)
    
                c.delegate = new Object() {
                    Report createReport(String name) {
                        add(TestReport, name, Describables.of(name), Report.OutputType.FILE)
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/testdata/main5.c

    int *nilp;
    
    int main(int argc, char** argv) {
    	int verbose;
    	int test;
    
    	if (argc < 2) {
    		printf("Missing argument\n");
    		return 1;
    	}
    
    	test = atoi(argv[1]);
    
    	verbose = (argc > 2);
    
    	Noop();
    
    	switch (test) {
    		case 1: {
    			if (verbose) {
    				printf("attempting segfault\n");
    			}
    
    			*nilp = 0;
    			break;
    		}
    
    		case 2: {
    			struct timeval tv;
    
    			if (verbose) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskPropertyUtils.java

        @VisibleForTesting
        public static void visitProperties(PropertyWalker propertyWalker, TaskInternal task, PropertyVisitor visitor) {
            visitProperties(propertyWalker, task, TypeValidationContext.NOOP, visitor);
        }
    
        /**
         * Visits both properties declared via annotations on the properties of the task type as well as
         * properties declared via the runtime API ({@link org.gradle.api.tasks.TaskInputs} etc.).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top