Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 317 for isInitialized (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    	// and initializableConn#InitializeWrite() has been called with the result.
    	initializableConn
    
    	lock          sync.Mutex
    	headerBuffer  []byte
    	initialized   bool
    	initializeErr error
    }
    
    // initializableConn is a connection that will be initialized before any calls to Write are made
    type initializableConn interface {
    	net.Conn
    	// InitializeWrite is called when the backend response headers have been read.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/likelyadjust.go

    	outer  *loop  // loop containing this loop
    
    	// By default, children, exits, and depth are not initialized.
    	children []*loop  // loops nested directly within this loop. Initialized by assembleChildren().
    	exits    []*Block // exits records blocks reached by exits from this loop. Initialized by findExits().
    
    	// Next three fields used by regalloc and/or
    	// aid in computation of inner-ness and list of blocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/get_compiler_ir.cc

          arg.definition_stack_trace = variable.definition_stack_trace();
          TF_RET_CHECK(variable.var() && variable.var()->is_initialized);
          const Tensor* value = variable.var()->tensor();
          arg.type = value->dtype();
          arg.shape = value->shape();
          arg.initialized = true;
        } else {
          // Instead of embedding constant into HLO,
          // we handle tf.constant as parameter to reduce size.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/securitycontext/accessors.go

    // May be initialized with a nil PodSecurityContext.
    func NewPodSecurityContextAccessor(podSC *api.PodSecurityContext) PodSecurityContextAccessor {
    	return &podSecurityContextWrapper{podSC: podSC}
    }
    
    // NewPodSecurityContextMutator returns a mutator for the given pod security context.
    // May be initialized with a nil PodSecurityContext.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  5. pkg/kubelet/status/generate.go

    			Status: v1.ConditionTrue,
    			Reason: PodCompleted,
    		}
    	}
    
    	// If there is any regular container that has started, then the pod has
    	// been initialized before.
    	// This is needed to handle the case where the pod has been initialized but
    	// the restartable init containers are restarting.
    	if kubecontainer.HasAnyRegularContainerStarted(spec, containerStatuses) {
    		return v1.PodCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/log/Logger.java

        /**
         * {@link Logger}を初期化します。
         */
        protected static synchronized void initialize() {
            DisposableUtil.addFirst(() -> {
                initialized = false;
                loggers.clear();
                factory.releaseAll();
            });
            initialized = true;
        }
    
        /**
         * ログアダプタのファクトリを返します。
         * <p>
         * Commons Loggingが使える場合はCommons Loggingを利用するためのファクトリを返します。
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu.go

    package cpu
    
    import (
    	"os"
    	"strings"
    )
    
    // Initialized reports whether the CPU features were initialized.
    //
    // For some GOOS/GOARCH combinations initialization of the CPU features depends
    // on reading an operating specific file, e.g. /proc/self/auxv on linux/arm
    // Initialized will report false if reading the file fails.
    var Initialized bool
    
    // CacheLinePad is used to pad structs to avoid false sharing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            where:
            currentState                | requiredState
            ModelNode.State.Initialized | ModelNode.State.Initialized
            ModelNode.State.GraphClosed | ModelNode.State.Initialized
        }
    
        def "cannot add rule when input state is not at or earlier than input source state"() {
            given:
            def node = node("a", Long)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Striped64.java

     * so.
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/Striped64.java

     * so.
     */
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top