Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 285 for isInitialized (0.19 sec)

  1. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

    @ReflectionSupport(value = ReflectionSupport.Level.FULL)
    @ElementTypesAreNonnullByDefault
    abstract class AggregateFutureState<OutputT extends @Nullable Object>
        extends AbstractFuture.TrustedFuture<OutputT> {
      // Lazily initialized the first time we see an exception; not released until all the input futures
      // have completed and we have processed them all.
      @CheckForNull private volatile Set<Throwable> seenExceptions = null;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    	for i, n := range vars {
    		idx[n] = int32(i)
    	}
    	return vars, idx
    }
    
    func (lv *liveness) initcache() {
    	if lv.cache.initialized {
    		base.Fatalf("liveness cache initialized twice")
    		return
    	}
    	lv.cache.initialized = true
    
    	for i, node := range lv.vars {
    		switch node.Class {
    		case ir.PPARAM:
    			// A return instruction with a p.to is a tail return, which brings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    		deltaLog.Debugf("Authenticated XDS: %v with identity %v", peerAddr, ids)
    	} else {
    		deltaLog.Debugf("Unauthenticated XDS: %v", peerAddr)
    	}
    
    	// InitContext returns immediately if the context was already initialized.
    	if err = s.globalPushContext().InitContext(s.Env, nil, nil); err != nil {
    		// Error accessing the data - log and close, maybe a different pilot replica
    		// has more luck
    		deltaLog.Warnf("Error reading config %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_precompiled.adoc

    [[sec:plugin_conventions]]
    == Adding default configuration as conventions
    
    In plugins, you can define default values, also known as *conventions*, using the `project` object.
    
    Convention properties are properties that are initialized with default values but can be overridden:
    
    ====
    include::sample[dir="snippets/plugins/greeting/kotlin", files="buildSrc/src/main/kotlin/greetings.gradle.kts[tags=convention]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

        }
    
        private long initializeHome() {
            executer.requireIsolatedDaemons() // needs to stop daemon
            requireOwnGradleUserHomeDir() // needs its own journal
            run() // Make sure cache directory is initialized
            run '--stop' // ensure daemon does not cache file access times in memory
            return gcFile().makeOlder().lastModified()
        }
    
        long markCacheLastCleaned(long timeMillis) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_plugin.go

    	nim = nodeinfomanager.NewNodeInfoManager(host.GetNodeName(), host, migratedPlugins)
    
    	// This function prevents Kubelet from posting Ready status until CSINode
    	// is both installed and initialized
    	if err := initializeCSINode(host); err != nil {
    		return errors.New(log("failed to initialize CSINode: %v", err))
    	}
    
    	return nil
    }
    
    func initializeCSINode(host volume.VolumeHost) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. src/crypto/des/block.go

    	// switch left & right and perform final permutation
    	preOutput := (uint64(right) << 32) | uint64(left)
    	byteorder.BePutUint64(dst, permuteFinalBlock(preOutput))
    }
    
    // DES Feistel function. feistelBox must be initialized via
    // feistelBoxOnce.Do(initFeistelBox) first.
    func feistel(l, r uint32, k0, k1 uint64) (lout, rout uint32) {
    	var t uint32
    
    	t = r ^ uint32(k0>>32)
    	l ^= feistelBox[7][t&0x3f] ^
    		feistelBox[5][(t>>8)&0x3f] ^
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. cmd/peer-rest-client.go

    type peerRESTClient struct {
    	host       *xnet.Host
    	restClient *rest.Client
    	gridHost   string
    	// Function that returns the grid connection for this peer when initialized.
    	// Will return nil if the grid connection is not initialized yet.
    	gridConn func() *grid.Connection
    }
    
    // Returns a peer rest client.
    func newPeerRESTClient(peer *xnet.Host, gridHost string) *peerRESTClient {
    	scheme := "http"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/util/util.go

    		b.WriteRune(':')
    		b.WriteString(proxyLabels[key])
    		b.WriteRune(' ')
    	}
    	return b.Bytes()
    }
    
    // IsLocalityEmpty checks if a locality is empty (checking region is good enough, based on how its initialized)
    func IsLocalityEmpty(locality *core.Locality) bool {
    	if locality == nil || (len(locality.GetRegion()) == 0) {
    		return true
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. src/internal/cpu/cpu.go

    package cpu
    
    import _ "unsafe" // for linkname
    
    // DebugOptions is set to true by the runtime if the OS supports reading
    // GODEBUG early in runtime startup.
    // This should not be changed after it is initialized.
    var DebugOptions bool
    
    // CacheLinePad is used to pad structs to avoid false sharing.
    type CacheLinePad struct{ _ [CacheLinePadSize]byte }
    
    // CacheLineSize is the CPU's assumed cache line size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top