Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 178 for NOOP (0.09 sec)

  1. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/TaskReportContainerTest.groovy

        }
    
        static class TestReportContainer extends TaskReportContainer<Report> {
            TestReportContainer(Task task, Closure c) {
                super(Report, task, CollectionCallbackActionDecorator.NOOP)
    
                c.delegate = new Object() {
                    Report file(String name) {
                        add(TaskGeneratedSingleFileReport, name, task)
                    }
                    Report dir(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/DefaultPublicationContainerTest.groovy

        Instantiator instantiator = TestUtil.instantiatorFactory().decorateLenient()
        DefaultPublicationContainer container = instantiator.newInstance(DefaultPublicationContainer, instantiator, CollectionCallbackActionDecorator.NOOP)
    
        def "exception is thrown on unknown access"() {
            given:
            container.add(publication("foo"))
    
            expect:
            container.foo instanceof Publication
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

            @Override
            protected SnapshotHierarchy updateNotifyingListeners(AbstractVirtualFileSystem.UpdateFunction updateFunction) {
                return updateFunction.update(SnapshotHierarchy.NodeDiffListener.NOOP)
            }
        }
    
        def "does not store snapshot when invalidation happened in between"() {
            def location = '/my/location/new'
            when:
            start {
                vfs.store(location, { ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/tests/extract_head_tail_outside_compilation.mlir

      func.func @tail_single_outside_compiled_op() {
        // CHECK:      %[[CLUSTER_OUT:.*]] = "tf_device.cluster"
        // CHECK-NEXT:   %[[A_OUT:.*]] = "tf.A"
        // CHECK-NEXT:   "tf.NoOp"
        // CHECK-NEXT:   tf_device.return %[[A_OUT]]
        // CHECK-NEXT: {
        // CHECK-DAG:  num_cores_per_replica = 1
        // CHECK-DAG:  step_marker_location = ""
        // CHECK-DAG:  topology = ""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

    func.func @multiple_func_body_ops() {
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    */
    
    package factory
    
    import (
    	"context"
    	"io/ioutil"
    	"os"
    	"path"
    	"path/filepath"
    	"testing"
    
    	"go.etcd.io/etcd/client/pkg/v3/transport"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	apitesting "k8s.io/apimachinery/pkg/api/apitesting"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistryTest.groovy

        def ideArtifactRegistry = Mock(IdeArtifactRegistry)
        def registry = new VisualStudioProjectRegistry(fileResolver, TestUtil.instantiatorFactory().decorateLenient(), ideArtifactRegistry, CollectionCallbackActionDecorator.NOOP, TestUtil.objectFactory(), new DefaultProviderFactory())
    
        def "creates a matching visual studio project configuration for target binary"() {
            def executableBinary = targetBinary("vsConfig")
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. src/os/exec_plan9.go

    	// Just mark the PID unusable.
    	p.pidDeactivate(statusReleased)
    
    	// no need for a finalizer anymore
    	runtime.SetFinalizer(p, nil)
    	return nil
    }
    
    func findProcess(pid int) (p *Process, err error) {
    	// NOOP for Plan 9.
    	return newPIDProcess(pid), nil
    }
    
    // ProcessState stores information about a process, as reported by Wait.
    type ProcessState struct {
    	pid    int              // The process's id.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultStaticLibraryBinarySpecTest.groovy

        final resolver = Stub(NativeDependencyResolver)
        final outputFile = Mock(File)
        def tasks = new DefaultStaticLibraryBinarySpec.DefaultTasksCollection(new DefaultBinaryTasksCollection(null, null, CollectionCallbackActionDecorator.NOOP))
    
        def "has useful string representation"() {
            expect:
            staticLibrary.toString() == "static library 'main:staticLibrary'"
        }
    
        def getStaticLibrary() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top