Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for creators (0.2 sec)

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val actual = source!!.buffer().readUtf8()
        assertThat(actual).isEqualTo(expected)
      }
    
      /**
       * Returns true when all work currently in progress by the watchdog have completed. This method
       * creates more work for the watchdog and waits for that work to be executed. When it is, we know
       * work that preceded this call is complete.
       */
      private fun awaitWatchdogIdle() {
        val latch = CountDownLatch(1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K 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. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                                       const llvm::SetVector<Value>& inputs,
                                       const llvm::SetVector<Value>& outputs,
                                       const std::string& name) {
      // Creates an empty func.FuncOp with a signature compatible with 'inputs'
      // (operands) and 'outputs' (results).
      OpBuilder builder(module);
      auto in_types = GetValueTypes(inputs);
      auto out_types = GetValueTypes(outputs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top