Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 178 for assignOps (0.24 sec)

  1. pkg/kubelet/cm/devicemanager/types.go

    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady, initialContainers containermap.ContainerMap, initialContainerRunningSet sets.Set[string]) error
    
    	// Allocate configures and assigns devices to a container in a pod. From
    	// the requested device resources, Allocate will communicate with the
    	// owning device plugin to allow setup procedures to take place, and for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/subr.go

    		return ir.OXXX, why
    	}
    
    	// 1. src can be assigned to dst.
    	op, why := assignOp(src, dst)
    	if op != ir.OXXX {
    		return op, why
    	}
    
    	// The rules for interfaces are no different in conversions
    	// than assignments. If interfaces are involved, stop now
    	// with the good message from assignop.
    	// Otherwise clear the error.
    	if src.IsInterface() || dst.IsInterface() {
    		return ir.OXXX, why
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_testlib.h

      // `status` checked.
      void Destroy(TFE_Context* context, TF_Status* status);
    
      // Reads from the variable.
      TensorHandlePtr Read(TFE_Context* context, TF_Status* status);
      // Assigns a new value to the variable.
      void Assign(TFE_Context* context, TFE_TensorHandle* value, TF_Status* status);
      // Adds `value` to the existing value of the variable.
      void AssignAdd(TFE_Context* context, TFE_TensorHandle* value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 09 01:12:35 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    Let's focus on the parameters declared:
    
    * Even though this function is a dependency ("dependable") itself, it also declares another dependency (it "depends" on something else).
        * It depends on the `query_extractor`, and assigns the value returned by it to the parameter `q`.
    * It also declares an optional `last_query` cookie, as a `str`.
        * If the user didn't provide any query `q`, we use the last query used, which we saved to a cookie before.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    The `settings.gradle(.kts)` file has two interesting lines:
    
    ====
    include::sample[dir="kotlin",files="settings.gradle.kts[]"]
    include::sample[dir="groovy",files="settings.gradle[]"]
    ====
    - `rootProject.name` assigns a name to the build, which overrides the default behavior of naming the build after the directory it's in.
      It's recommended to set a fixed name as the folder might change if the project is shared - e.g. as root of a Git repository.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission.go

    func (a *QuotaAdmission) SetExternalKubeInformerFactory(f informers.SharedInformerFactory) {
    	a.quotaAccessor.lister = f.Core().V1().ResourceQuotas().Lister()
    }
    
    // SetQuotaConfiguration assigns and initializes configuration and evaluator for QuotaAdmission
    func (a *QuotaAdmission) SetQuotaConfiguration(c quota.Configuration) {
    	a.quotaConfiguration = c
    	if a.stopCh == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/test/groovy/org/gradle/internal/code/DefaultUserCodeApplicationContextTest.groovy

    import spock.lang.Specification
    
    import java.util.function.Supplier
    
    class DefaultUserCodeApplicationContextTest extends Specification {
        def context = new DefaultUserCodeApplicationContext()
    
        def "assigns id and associates with current thread"() {
            def source = Stub(UserCodeSource)
            def action = Mock(Action)
    
            expect:
            context.current() == null
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 27 13:19:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu-merge-variables-with-execute.mlir

      // CHECK-NEXT: return %[[READ_3]]
      func.return %read3 : tensor<8xf32>
    }
    
    // -----
    
    // Tests that the pass does merge reads/assigns if there are resource accesses
    // in between which are not interfering.
    // For %arg0 and %arg1 both reads and assigns are merged, for %arg3 and %arg4
    // only reads are merged.
    
    // CHECK-LABEL: func @non_interfering_accesses
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/cidr_allocator.go

    // CIDRAllocator is an interface implemented by things that know how
    // to allocate/occupy/recycle CIDR for nodes.
    type CIDRAllocator interface {
    	// AllocateOrOccupyCIDR looks at the given node, assigns it a valid
    	// CIDR if it doesn't currently have one or mark the CIDR as used if
    	// the node already have one.
    	AllocateOrOccupyCIDR(ctx context.Context, node *v1.Node) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    		x.limbs = make([]uint, n)
    		return x
    	}
    	clear(x.limbs)
    	x.limbs = x.limbs[:n]
    	return x
    }
    
    // set assigns x = y, optionally resizing x to the appropriate size.
    func (x *Nat) set(y *Nat) *Nat {
    	x.reset(len(y.limbs))
    	copy(x.limbs, y.limbs)
    	return x
    }
    
    // setBig assigns x = n, optionally resizing n to the appropriate size.
    //
    // The announced length of x is set based on the actual bit size of the input,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top