Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 285 for isInitialized (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    ****
    **In this section you will:**
    
    - Turn on the local Build Cache
    - Understand caching
    - Explore remote build caching
    ****
    
    [[part6_begin]]
    == Step 0. Before you Begin
    
    1. You initialized your Java app in <<part1_gradle_init.adoc#part1_begin,part 1>>.
    2. You ran several tasks in <<part2_gradle_tasks#part2_begin,part 2>>.
    3. You learned about dependency management in <<part3_gradle_dep_man#part3_begin,part 3>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/authentication.go

    	"istio.io/istio/pkg/config/schema/kind"
    )
    
    // MutualTLSMode is the mutual TLS mode specified by authentication policy.
    type MutualTLSMode int
    
    const (
    	// MTLSUnknown is used to indicate the variable hasn't been initialized correctly (with the authentication policy).
    	MTLSUnknown MutualTLSMode = iota
    
    	// MTLSDisable if authentication policy disable mTLS.
    	MTLSDisable
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. pkg/webhooks/validation/server/server.go

    	buf := &bytes.Buffer{}
    
    	_, _ = fmt.Fprintf(buf, "DomainSuffix: %s\n", o.DomainSuffix)
    	_, _ = fmt.Fprintf(buf, "Port: %d\n", o.Port)
    
    	return buf.String()
    }
    
    // DefaultArgs allocates an Options struct initialized with Webhook's default configuration.
    func DefaultArgs() Options {
    	return Options{
    		Port: 9443,
    	}
    }
    
    // Webhook implements the validating admission webhook for validating Istio configuration.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/storage/storage_test.go

    	return &api.RangeAllocation{
    		Range: portRange,
    	}
    }
    
    func key() string {
    	return "/ranges/servicenodeports"
    }
    
    // TestEmpty fails to allocate ports if the storage wasn't initialized with a servicenodeport range
    func TestEmpty(t *testing.T) {
    	_, storage, _, _, destroyFunc := newStorage(t)
    	defer destroyFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/volume_manager.go

    // to communicate with the API server to fetch PV and PVC objects
    //
    // volumePluginMgr - the volume plugin manager used to access volume plugins.
    // Must be pre-initialized.
    func NewVolumeManager(
    	controllerAttachDetachEnabled bool,
    	nodeName k8stypes.NodeName,
    	podManager PodManager,
    	podStateProvider PodStateProvider,
    	kubeClient clientset.Interface,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/util/ipvs_linux.go

    type Protocol uint16
    
    // New returns a new Interface which will call ipvs APIs.
    func New() Interface {
    	handle, err := libipvs.New("")
    	if err != nil {
    		klog.ErrorS(err, "IPVS interface can't be initialized")
    		return nil
    	}
    	return &runner{
    		ipvsHandle: handle,
    	}
    }
    
    // AddVirtualServer is part of ipvs.Interface.
    func (runner *runner) AddVirtualServer(vs *VirtualServer) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/runtime/rand.go

    func readTimeRandom(r []byte) {
    	// Inspired by wyrand.
    	// An earlier version of this code used getg().m.procid as well,
    	// but note that this is called so early in startup that procid
    	// is not initialized yet.
    	v := uint64(nanotime())
    	for len(r) > 0 {
    		v ^= 0xa0761d6478bd642f
    		v *= 0xe7037ed1a0b428db
    		size := 8
    		if len(r) < 8 {
    			size = len(r)
    		}
    		for i := 0; i < size; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pkg/kubelet/volume_host.go

    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    )
    
    // NewInitializedVolumePluginMgr returns a new instance of
    // volume.VolumePluginMgr initialized with kubelets implementation of the
    // volume.VolumeHost interface.
    //
    // kubelet - used by VolumeHost methods to expose kubelet specific parameters
    // plugins - used to initialize volumePluginMgr
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    
    // Broadcasts the 1D value tensor 'value_1d' to the shape of 'result_type'. If
    // 'shape_value' is initialized, creates a dynamic broadcast, otherwise creates
    // a static broadcast.
    Value broadcastToFeatureDim(Location loc, RankedTensorType result_type,
                                Value value1d, Value shape_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

        );
    
        // Store this because Locale.default is mutable and we want the unchanged default
        // We are assuming this class will be initialized before any code has a chance to change the default
        private static final Locale DEFAULT_LOCALE = Locale.getDefault();
    
        private final List<Object> extraJvmArgs = new ArrayList<Object>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top