Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for creators (0.1 sec)

  1. pkg/proxy/nftables/proxier.go

    	firewallIPsMap     = "firewall-ips"
    	firewallCheckChain = "firewall-check"
    
    	// masquerading
    	markMasqChain     = "mark-for-masquerade"
    	masqueradingChain = "masquerading"
    )
    
    // NewDualStackProxier creates a MetaProxier instance, with IPv4 and IPv6 proxies.
    func NewDualStackProxier(
    	ctx context.Context,
    	syncPeriod time.Duration,
    	minSyncPeriod time.Duration,
    	masqueradeAll bool,
    	masqueradeBit int,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    		indexer.Add(&v1.Node{ObjectMeta: metav1.ObjectMeta{Name: nodeName}})
    	}
    
    	esInformer := informerFactory.Discovery().V1().EndpointSlices()
    	esIndexer := esInformer.Informer().GetIndexer()
    
    	// These reactors are required to mock functionality that would be covered
    	// automatically if we weren't using the fake client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // Replace
    //   OneHot(index, depth, on=1.0f, off=0.0f, axis=-1) * filter
    // With
    //   EmbeddingLookup(index, Transpose(filter))
    //
    // OneHot with on=1 off=0 axis=-1, where `index` is a single element tensor,
    // creates a tensor of size depth, and all values are 0, except for the element
    // at `index`, which is 1. Multiplying such a tensor with a 2D filter esentially
    // returns the single column in filter as a 1D tensor. If the input has multiple
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    	jobCancelers map[string]context.CancelFunc
    	workerKillCh chan struct{}
    	workerSize   int
    }
    
    var globalBatchJobPool *BatchJobPool
    
    // newBatchJobPool creates a pool of job manifest workers of specified size
    func newBatchJobPool(ctx context.Context, o ObjectLayer, workers int) *BatchJobPool {
    	jpool := &BatchJobPool{
    		ctx:          ctx,
    		objLayer:     o,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	EnvelopeKMSv2ServiceFactory = newMockEnvelopeKMSv2Service
    	defer func() {
    		envelopeServiceFactory = factory
    		EnvelopeKMSv2ServiceFactory = factoryKMSv2
    	}()
    
    	ctx := testContext(t)
    
    	// Creates compound/prefix transformers with different ordering of available transformers.
    	// Transforms data using one of them, and tries to untransform using the others.
    	// Repeats this for all possible combinations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager_test.go

    func withCDIDevices(cdiDevices ...string) containerAllocateResponseBuilderOption {
    	return func(b *containerAllocateResponseBuilder) {
    		b.cdiDevices = cdiDevices
    	}
    }
    
    // newContainerAllocateResponse creates a ContainerAllocateResponse with the given options.
    func newContainerAllocateResponse(opts ...containerAllocateResponseBuilderOption) *pluginapi.ContainerAllocateResponse {
    	b := &containerAllocateResponseBuilder{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    	if len(x) != len(y) {
    		return false
    	}
    	for i, xi := range x {
    		if xi != y[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // mProf_NextCycle publishes the next heap profile cycle and creates a
    // fresh heap profile cycle. This operation is fast and can be done
    // during STW. The caller must call mProf_Flush before calling
    // mProf_NextCycle again.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    type KubeGenericRuntime interface {
    	kubecontainer.Runtime
    	kubecontainer.StreamingRuntime
    	kubecontainer.CommandRunner
    }
    
    // NewKubeGenericRuntimeManager creates a new kubeGenericRuntimeManager
    func NewKubeGenericRuntimeManager(
    	recorder record.EventRecorder,
    	livenessManager proberesults.Manager,
    	readinessManager proberesults.Manager,
    	startupManager proberesults.Manager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	svc1Ips := []string{"128.0.0.1"}
    	portNames := []string{"tcp-port"}
    	// Create 1 endpoint that refers to a pod in the same namespace.
    	createEndpoints(t, controller, "svc1", "nsA", portNames, svc1Ips, nil, nil)
    
    	// Creates 100 endpoints that refers to a pod in a different namespace.
    	fakeSvcCounts := 100
    	for i := 0; i < fakeSvcCounts; i++ {
    		svcName := fmt.Sprintf("svc-fake-%d", i)
    		createServiceWait(controller, svcName, "nsfake", nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    func AllowMissingModuleImports() {
    	if initialized {
    		panic("AllowMissingModuleImports after Init")
    	}
    	allowMissingModuleImports = true
    }
    
    // makeMainModules creates a MainModuleSet and associated variables according to
    // the given main modules.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top