Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 947 for ONCE (2.19 sec)

  1. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		if err := mount("/dev/null", "/etc/nsswitch.conf"); err != nil {
    			return fmt.Errorf("bind mount to %q failed: %v", "/etc/nsswitch.conf", err)
    		}
    		return nil
    	}
    
    	executed := false
    	// Once we call unshare(CLONE_NEWNS), we cannot undo it explicitly. Instead, we need to unshare on a specific thread,
    	// then kill that thread when we are done (or rather, let Go runtime kill the thread).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    A relocation POM only has to be published once, the build file configuration for it should be removed again once it has been published.
    
    Note that a relocation POM is not suitable for all situations; when an artifact has been split into two or more separate artifacts then a relocation POM might not be helpful.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. src/sync/map.go

    // easier to maintain other invariants along with the map content.
    //
    // The Map type is optimized for two common use cases: (1) when the entry for a given
    // key is only ever written once but read many times, as in caches that only grow,
    // or (2) when multiple goroutines read, write, and overwrite entries for disjoint
    // sets of keys. In these two cases, use of a Map may significantly reduce lock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. src/time/zoneinfo.go

    var Local *Location = &localLoc
    
    // localLoc is separate so that initLocal can initialize
    // it even if a client has changed Local.
    var localLoc Location
    var localOnce sync.Once
    
    func (l *Location) get() *Location {
    	if l == nil {
    		return &utcLoc
    	}
    	if l == &localLoc {
    		localOnce.Do(initLocal)
    	}
    	return l
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        READY_FOR_NIGHTLY("Ready for Nightly", "Rerun tests in different environments / 3rd party components", "ReadyforNightly"),
        READY_FOR_RELEASE("Ready for Release", "Once a day: Rerun tests in more environments", "ReadyforRelease"),
        HISTORICAL_PERFORMANCE("Historical Performance", "Once a week: Run performance tests for multiple Gradle versions", "HistoricalPerformance"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/runtime/netpoll_solaris.go

    // file descriptor might have been closed and reopened already. The
    // lock allows runtime·netpollupdate to be called synchronously from
    // the loop thread while preventing other threads operating to the
    // same PollDesc, so once we unblock in the main loop, until we loop
    // again we know for sure we are always talking about the same file
    // descriptor and can safely access the data we want (the event set).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/certificates/v1/generated.proto

      // indicating the signer failed to issue the certificate.
      //
      // Approved and Denied conditions are mutually exclusive.
      // Approved, Denied, and Failed conditions cannot be removed once added.
      //
      // Only one condition of a given type is allowed.
      optional string type = 1;
    
      // status of the condition, one of True, False, Unknown.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/flags.h

        // `enabled_for_gpu_` below.
        bool enabled_for_all_;
    
        // If true, enable Device API (PjRt) for TF GPU device. This is a helper
        // flag so that individual tests can turn on PjRt for GPU specifically.
        // Once the rollout to GPU is complete, this flag can be deprecated.
        bool enabled_for_gpu_;
    
       private:
        // Devices for which using Device API (PjRt) is allowed in the XlaLaunch op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSet.java

       * each appears first in the source iterable. This method iterates over {@code elements} only
       * once.
       *
       * <p><b>Performance note:</b> This method will sometimes recognize that the actual copy operation
       * is unnecessary; for example, {@code copyOf(copyOf(anArrayList))} should copy the data only
       * once. This reduces the expense of habitually making defensive copies at API boundaries.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Spec describes the desired attributes of a resource that then needs
    	// to be allocated. It can only be set once when creating the
    	// ResourceClaim.
    	Spec ResourceClaimSpec `json:"spec" protobuf:"bytes,2,name=spec"`
    
    	// Status describes whether the resource is available and with which
    	// attributes.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top