Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,741 for handle2 (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/CrossProcessFileLockIntegrationTest.groovy

                }
            """
    
            then:
            def handle1 = executer.withArguments(':a:build', '-i').start()
            poll(120) {
                assert handle1.standardOutput.contains('waiting for file...')
            }
            //first build is waiting for file, so the lock should be releasable now (for example: the task history lock)
    
            and:
            def handle2 = executer.withArguments('b:build', '-is').start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

            when: "two processes are started, which will edit the settings file at the same time"
            def handle1 = executer.withTasks('tasks').start()
            def handle2 = executer.withTasks('tasks').start()
    
            and: "they both complete"
            def result1 = handle1.waitForFinish()
            def result2 = handle2.waitForFinish()
    
            then: "both builds ran, with the settings script editing the archive atomically"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/ifrt/sink_variable_as_named_array.mlir

    //
    //
    // CHECK-LABEL:  func.func @serving_default(%arg0: tensor<1x3xf32>) -> tensor<1x1xf32> {
    // CHECK-NEXT:   [[HANDLE2:%.*]] = "tf.VarHandleOp"
    // CHECK-NEXT:   [[KEY:%.*]], [[FUTURE:%.*]] = "tf.IfrtLoadVariable"([[HANDLE2]])
    // CHECK-SAME:       used_by_host = false 
    // CHECK-NEXT:   [[RES:%.*]] = "tf.IfrtCall"([[KEY]], %arg0) <{program_id = 6515870160938153680 : i64, variable_arg_indices = [0 : i32]}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 15:33:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_plugin_test.go

    			specVolID: "test.vol.id",
    			volHandle: "testvol-handle1",
    
    			originSpec: volume.NewSpecFromPersistentVolume(makeTestPV("test.vol.id", 20, testDriver, "testvol-handle1"), true),
    			podUID:     types.UID(fmt.Sprintf("%08X", rand.Uint64())),
    		},
    		{
    			name:       "construct spec2 from original persistent spec",
    			specVolID:  "spec2",
    			volHandle:  "handle2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/sink_in_invariant_ops.mlir

      // CHECK-DAG: [[handle1:%.*]] = "tf.VarHandleOp"() <{{{.*}}, shared_name = "variable1"}>
      // CHECK-DAG: [[handle2:%.*]] = "tf.VarHandleOp"() <{{{.*}}, shared_name = "variable2"}>
      // CHECK: "tf.ReadVariableOp"([[handle1]])
      // CHECK: "tf.ReadVariableOp"([[handle2]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

                handle.release("a")
                handle.waitForAllPendingCalls()
                handle.release(1)
                handle.waitForAllPendingCalls()
                handle.releaseAll()
                handle.waitForAllPendingCalls()
                handle.releaseAll()
                handle.waitForAllPendingCalls()
            }
            server.stop()
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      // expected-remark@above {{Sinks: {6}}}
    }
    
    // -----
    
    // Tests that two resources allocated with identical non-empty `shared_name`
    // attributes are dependent. That means, `%handle1` and `%handle2` point to
    // the same resources and the second `InitializeTableV2` op depends on the
    // first one.
    func.func @resources_allocated_with_same_nonempty_shared_name(
      // expected-remark@above {{ID: 9}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/handler.go

    type ReadyFunc func() bool
    
    // Handler is a base for admission control handlers that
    // support a predefined set of operations
    type Handler struct {
    	operations sets.String
    	readyFunc  ReadyFunc
    }
    
    // Handles returns true for methods that this handler supports
    func (h *Handler) Handles(operation Operation) bool {
    	return h.operations.Has(string(operation))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 08:47:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  9. src/log/slog/handler.go

    // manage this concurrency.
    //
    // Users of the slog package should not invoke Handler methods directly.
    // They should use the methods of [Logger] instead.
    type Handler interface {
    	// Enabled reports whether the handler handles records at the given level.
    	// The handler ignores records whose level is lower.
    	// It is called early, before any arguments are processed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/handler.go

    	Director http.Handler
    }
    
    // HandlerChainBuilderFn is used to wrap the GoRestfulContainer handler using the provided handler chain.
    // It is normally used to apply filtering like authentication and authorization
    type HandlerChainBuilderFn func(apiHandler http.Handler) http.Handler
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top