Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for finalizer (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            assertHasProducer(property, task1, task2, task3)
    
            property.attachProducer(owner(producer))
            assertHasProducer(property, producer)
        }
    
        def "cannot set to empty map after value finalized"() {
            given:
            property.set(someValue())
            property.finalizeValue()
    
            when:
            property.empty()
    
            then:
            def e = thrown IllegalStateException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. 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)
  5. pkg/scheduler/framework/runtime/framework.go

    	return func(o *frameworkOptions) {
    		o.parallelizer = parallelize.NewParallelizer(parallelism)
    	}
    }
    
    // CaptureProfile is a callback to capture a finalized profile.
    type CaptureProfile func(config.KubeSchedulerProfile)
    
    // WithCaptureProfile sets a callback to capture the finalized profile.
    func WithCaptureProfile(c CaptureProfile) Option {
    	return func(o *frameworkOptions) {
    		o.captureProfile = c
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. 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)
  7. src/runtime/malloc.go

    		throw("mallocgc called with gcphase == _GCmarktermination")
    	}
    
    	if size == 0 {
    		return unsafe.Pointer(&zerobase)
    	}
    
    	// It's possible for any malloc to trigger sweeping, which may in
    	// turn queue finalizers. Record this dynamic lock edge.
    	lockRankMayQueueFinalizer()
    
    	userSize := size
    	if asanenabled {
    		// Refer to ASAN runtime library, the malloc() function allocates extra memory,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/api/apps/v1/types.go

    const (
    	// ReplicaSetReplicaFailure is added in a replica set when one of its pods fails to be created
    	// due to insufficient quota, limit ranges, pod security policy, node selectors, etc. or deleted
    	// due to kubelet being down or finalizers are failing.
    	ReplicaSetReplicaFailure ReplicaSetConditionType = "ReplicaFailure"
    )
    
    // ReplicaSetCondition describes the state of a replica set at a certain point.
    type ReplicaSetCondition struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test-pod",
    					Namespace:       "test-ns",
    					ResourceVersion: "1",
    					Annotations:     map[string]string{"foo": "bar", "whiz": "pop"},
    					Finalizers:      []string{"milo"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:  "container",
    							Image: "newimage",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top