Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for Invoke (0.14 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// Note:
    	// * the number of additional invocations is not guaranteed to be exactly one.
    	// * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again.
    	// * webhooks that use this option may be reordered to minimize the number of additional invocations.
    	// * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    		releasem(mp)
    		return
    	}
    	releasem(mp)
    	mp = nil
    
    	// Pick up the remaining unswept/not being swept spans concurrently
    	//
    	// This shouldn't happen if we're being invoked in background
    	// mode since proportional sweep should have just finished
    	// sweeping everything, but rounding errors, etc, may leave a
    	// few spans unswept. In forced mode, this is necessary since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            then:
            r2 == null
            1 * spec.isSatisfiedBy(someValue()) >> false
            0 * _
        }
    
        def "mapped provider has no value and transformer is not invoked when property has no value"() {
            def transformer = Mock(Transformer)
            def property = propertyWithNoValue()
    
            when:
            def provider = property.map(transformer)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Note:
    	// * the number of additional invocations is not guaranteed to be exactly one.
    	// * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again.
    	// * webhooks that use this option may be reordered to minimize the number of additional invocations.
    	// * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

           ]>,
           SingleBlockImplicitTerminator<"YieldOp">,
           TF_GeneratorOpSideEffect,
          ]> {
      let summary = "Regional version of GeneratorDataset";
    
      let description = [{
    Creates a dataset that invokes its 'next' region to generate elements. Conceptually,
    within MLIR, we treat this op as if it fills a buffer with all the results right away,
    and those results are then passed (through the variant tensor result) to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    - validations registered via `ObjectInputStream.registerValidation` are simply ignored;
    - the `readObjectNoData` method, if present, is never invoked;
    
    See link:{gradle-issues}13588[gradle/gradle#13588].
    
    [[config_cache:not_yet_implemented:accessing_top_level_at_execution]]
    === Accessing top-level methods and variables of a build script at execution time
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. src/sync/atomic/atomic_test.go

    	}
    	n := int(1e6)
    	if testing.Short() {
    		n = int(1e4)
    	}
    	const procs = 8
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(procs))
    	// Disable the GC because hammerStoreLoadPointer invokes
    	// write barriers on values that aren't real pointers.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    	// Ensure any in-progress GC is finished.
    	runtime.GC()
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  8. src/testing/testing.go

    		if len(t.sub) == 0 {
    			t.runCleanup(normalPanic)
    		}
    	}()
    
    	t.start = highPrecisionTimeNow()
    	t.resetRaces()
    	fn(t)
    
    	// code beyond here will not be executed when FailNow is invoked
    	t.mu.Lock()
    	t.finished = true
    	t.mu.Unlock()
    }
    
    // Run runs f as a subtest of t called name. It runs f in a separate goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    type ErrorReporter struct {
    	ldr              *Loader
    	AfterErrorAction func()
    }
    
    // Errorf method logs an error message.
    //
    // After each error, the error actions function will be invoked; this
    // will either terminate the link immediately (if -h option given)
    // or it will keep a count and exit if more than 20 errors have been printed.
    //
    // Logging an error means that on exit cmd/link will delete any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top