Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 96 for finalizers (0.18 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            ModelNode.State.Initialized     | ModelActionRole.Initialize.name()
            ModelNode.State.Mutated         | ModelActionRole.Mutate.name()
            ModelNode.State.Finalized       | ModelActionRole.Finalize.name()
            ModelNode.State.SelfClosed      | ModelActionRole.Validate.name()
            ModelNode.State.GraphClosed     | ModelActionRole.Validate.name()
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            property.addAll(Stub(ProviderInternal))
    
            then:
            def e3 = thrown(IllegalStateException)
            e3.message == 'The value for this property cannot be changed any further.'
        }
    
        def "finalizes upstream properties when value read using #method and disallow unsafe reads"() {
            def a = property()
            def b = property()
            def c = elementProperty()
            def property = property()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    			})
    		}
    		wg.Wait()
    	})
    
    	// The finalizer goroutine should not show up in most profiles, since it's
    	// marked as a system goroutine when idle.
    	t.Run("finalizer not present", func(t *testing.T) {
    		var w strings.Builder
    		goroutineProf.WriteTo(&w, 1)
    		prof := w.String()
    		if includesFinalizer(prof) {
    			t.Errorf("profile includes finalizer (but finalizer should be marked as system):\n%s", prof)
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    // goroutineProfileState will be "InProgress" and it will not be able to run
    // until the capture completes and the state moves to "Satisfied".
    //
    // Some goroutines (the finalizer goroutine, which at various times can be
    // either a "system" or a "user" goroutine, and the goroutine that is
    // coordinating the profile, any goroutines created during the profile) move
    // directly to the "Satisfied" state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Plugins or build logic that eagerly queries the attributes of JVM configurations may now cause the project's Java toolchain to be finalized earlier than before.
    Attempting to modify the toolchain after it has been finalized will result in error messages similar to the following:
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	listers "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1"
    	"k8s.io/apiextensions-apiserver/pkg/controller/establish"
    	"k8s.io/apiextensions-apiserver/pkg/controller/finalizer"
    	"k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder"
    	"k8s.io/apiextensions-apiserver/pkg/crdserverscheme"
    	"k8s.io/apiextensions-apiserver/pkg/registry/customresource"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. src/runtime/traceback.go

    // runtime.handleAsyncEvent (wasm only) and sometimes runtime.runfinq.
    //
    // If fixed is true, any goroutine that can vary between user and
    // system (that is, the finalizer goroutine) is considered a user
    // goroutine.
    func isSystemGoroutine(gp *g, fixed bool) bool {
    	// Keep this in sync with internal/trace.IsSystemGoroutine.
    	f := findfunc(gp.startpc)
    	if !f.valid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tensorflow/BUILD

    # kernel registration - REGISTER_OP, REGISTER_KERNEL_BUILDER, etc.
    #
    # This setting is currently experimental. The 'v2' implementation does _not_
    # correspond to a particular, finalized design; rather, it relates to
    # developing one.
    #
    # The current aim of the 'v2' implementation is to allow 'unused' ops and
    # kernels to be discarded by the linker (to the benefit of binary size).
    bool_flag(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. tensorflow/c/kernels_test.cc

            DeviceFactory::NewDevice(device_name_, {}, "/job:a/replica:0/task:0"));
        OpsTestBase::SetDevice(DEVICE_GPU, std::move(device));
    #endif
        TF_ASSERT_OK(NodeDefBuilder(op_name, op_name).Finalize(node_def()));
        TF_ASSERT_OK(InitOp());
      }
    
    #if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
      const char* device_name_ = tensorflow::DEVICE_GPU;
    #else
      const char* device_name_ = tensorflow::DEVICE_CPU;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    next_extra_args: Additional arguments to pass to 'next'. (Passed after the
                     normal arguments which are from the return values of 'init'.)
    finalize_extra_args: Additional arguments to pass to 'finalize'. (Passed after
                     the normal arguments which are from the return values of 'init'.)
      }];
    
      let arguments = (ins
        Variadic<TF_Tensor>:$init_func_other_args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top