Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 422 for strref (0.14 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/RunEclipseSynchronizationTasks.java

     *
     * This is a special tooling model as it does not provide any information. However, when requested, Gradle will
     * override the client-provided tasks with the ones stored in the {@code eclipse.synchronizationTasks} property.
     *
     * This allows Buildship to run tasks before the model loading and load the models in a single step.
     *
     * @since 5.4
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/experimental/public/signature_def_function_metadata.h

    #include <memory>
    
    #include "tensorflow/c/experimental/saved_model/public/signature_def_function_metadata.h"
    
    namespace tensorflow {
    namespace experimental {
    namespace cc {
    
    // SignatureDefFunctionMetadata stores additional information on each input
    // and output's names, dtypes, and shape.
    class SignatureDefFunctionMetadata final {
      // TODO(bmzhao): Add getters here as necessary.
     private:
      friend class SignatureDefFunction;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. pkg/kubelet/container/cache.go

    	lock sync.RWMutex
    	// Map that stores the pod statuses.
    	pods map[types.UID]*data
    	// A global timestamp represents how fresh the cached data is. All
    	// cache content is at the least newer than this timestamp. Note that the
    	// timestamp is nil after initialization, and will only become non-nil when
    	// it is ready to serve the cached statuses.
    	timestamp *time.Time
    	// Map that stores the subscriber records.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/controller/repair.go

    		if len(ports) == 0 {
    			continue
    		}
    
    		for _, port := range ports {
    			switch err := rebuilt.Allocate(port); err {
    			case nil:
    				if stored.Has(port) {
    					// remove it from the old set, so we can find leaks
    					stored.Release(port)
    				} else {
    					// doesn't seem to be allocated
    					nodePortRepairPortErrors.WithLabelValues("repair").Inc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_386.s

    	MOVL	ptr+0(FP), BX
    	MOVL	val+4(FP), AX
    	XCHGL	AX, 0(BX)
    	RET
    
    TEXT ·Store(SB), NOSPLIT, $0-8
    	MOVL	ptr+0(FP), BX
    	MOVL	val+4(FP), AX
    	XCHGL	AX, 0(BX)
    	RET
    
    TEXT ·StoreRel(SB), NOSPLIT, $0-8
    	JMP	·Store(SB)
    
    TEXT ·StoreReluintptr(SB), NOSPLIT, $0-8
    	JMP	·Store(SB)
    
    // uint64 atomicload64(uint64 volatile* addr);
    TEXT ·Load64(SB), NOSPLIT, $0-12
    	NO_LOCAL_POINTERS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. tensorflow/c/env.h

    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_ENV_H_
    #define TENSORFLOW_C_ENV_H_
    
    #include <stdbool.h>
    #include <stddef.h>
    #include <stdint.h>
    
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/tf_file_statistics.h"
    #include "tensorflow/c/tf_status.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/output/register.go

    var (
    	// SchemeBuilder points to a list of functions added to Scheme.
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme applies all the stored functions to the scheme.
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&BootstrapToken{},
    		&Images{},
    		&UpgradePlan{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 17:11:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/cluster_scoping_pass.h

    // clustering from losing critical parallelism in the Tensorflow graph, which
    // can incur great performance degradation.
    //
    // This pass must be run before MarkForCompilationPass, as it stores the
    // scoping information that MarkForCompilationPass will need to respect for
    // clustering decision.
    class ClusterScopingPass : public GraphOptimizationPass {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 22 03:15:13 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializerTest.kt

            val property: Property<String>
        }
    
        @Test
        fun `can serialize Java lambda with Gradle model`() {
            val stored = newInstance<Dsl>().apply {
                property.set("42")
            }
            val loaded = valueCarriedBy(roundtripOf(isolatedActionLambdaWith(stored)))
            assertThat(
                loaded.property.get(),
                equalTo("42")
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. test/escape_array.go

    	x[0] = y[0]
    	return x[1]
    }
    
    // These two tests verify that:
    // small array literals are stack allocated;
    // pointers stored in small array literals do not escape;
    // large array literals are heap allocated;
    // pointers stored in large array literals escape.
    func hugeLeaks1(x **string, y **string) { // ERROR "leaking param content: x" "y does not escape"
    	a := [10]*string{*y}
    	_ = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.6K bytes
    - Viewed (0)
Back to top