Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 973 for assignOp (0.35 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_var_init_by_const.cc

      // Inherit the constructors.
      using OpRewritePattern<TF::AssignVariableOp>::OpRewritePattern;
    
      LogicalResult match(TF::AssignVariableOp assign_op) const override {
        Value resource_operand = assign_op.getOperand(0);
        Value assigned_value_operand = assign_op.getOperand(1);
    
        if (isa<TF::VarHandleOp>(resource_operand.getDefiningOp()) &&
            isa<TF::ConstOp>(assigned_value_operand.getDefiningOp())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 03 12:04:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/podresources/types.go

    type CPUsProvider interface {
    	// GetCPUs returns information about the cpus assigned to pods and containers
    	GetCPUs(podUID, containerName string) []int64
    	// GetAllocatableCPUs returns the allocatable (not allocated) CPUs
    	GetAllocatableCPUs() []int64
    }
    
    type MemoryProvider interface {
    	// GetMemory returns information about the memory assigned to containers
    	GetMemory(podUID, containerName string) []*podresourcesapi.ContainerMemory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 17:33:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/options/options.go

    		"service will be of type ClusterIP.")
    
    	fs.StringVar(&s.ServiceClusterIPRanges, "service-cluster-ip-range", s.ServiceClusterIPRanges, ""+
    		"A CIDR notation IP range from which to assign service cluster IPs. This must not "+
    		"overlap with any IP ranges assigned to nodes or pods. Max of two dual-stack CIDRs is allowed.")
    
    	fs.Var(&s.ServiceNodePortRange, "service-node-port-range", ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/LocalValueTest.kt

            val (rhs1, rhs2) = rhsOrigins
    
            with(rhs1.assigned) {
                assertIs<ObjectOrigin.NewObjectFromMemberFunction>(this)
                assertEquals("my1", function.simpleName)
            }
    
            with(rhs2.assigned) {
                assertIs<ObjectOrigin.NewObjectFromMemberFunction>(this)
                assertEquals("my2", function.simpleName)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.noptrbss", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.enoptrbss", 0), sect)
    
    	// Code coverage counters are assigned to the .noptrbss section.
    	// We assign them in a separate pass so that they stay aggregated
    	// together in a single blob (coverage runtime depends on this).
    	covCounterDataStartOff = sect.Length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    }
    
    // SetDefaults_Etcd assigns default values for the proxy
    func SetDefaults_Etcd(obj *ClusterConfiguration) {
    	if obj.Etcd.External == nil && obj.Etcd.Local == nil {
    		obj.Etcd.Local = &LocalEtcd{}
    	}
    	if obj.Etcd.Local != nil {
    		if obj.Etcd.Local.DataDir == "" {
    			obj.Etcd.Local.DataDir = DefaultEtcdDataDir
    		}
    	}
    }
    
    // SetDefaults_JoinConfiguration assigns default values to a regular node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    		switch x.(type) {
    		case *FileSyntax:
    			continue
    		}
    
    		// Do not assign suffix comments to something that starts
    		// on an earlier line, so that in
    		//
    		//	x ( y
    		//		z ) // comment
    		//
    		// we assign the comment to z and not to x ( ... ).
    		if start.Line != end.Line {
    			continue
    		}
    		xcom := x.Comment()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyExtensions.kt

    import java.io.File
    
    
    /**
     * Assign value: T to a property with assign operator
     *
     * @since 8.2
     */
    fun <T> Property<T>.assign(value: T?) {
        this.set(value)
    }
    
    
    /**
     * Assign value: Provider<T> to a property with assign operator
     *
     * @since 8.2
     */
    fun <T> Property<T>.assign(value: Provider<out T?>) {
        this.set(value)
    }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. RELEASE.md

            [guide on input distribution](https://www.tensorflow.org/tutorials/distribute/input).
    *   Allow var.assign on MirroredVariables with aggregation=NONE in replica
        context. Previously this would raise an error. We now allow this because
        many users and library writers find using `.assign` in replica context to be
        more convenient, instead of having to use `Strategy.extended.update` which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults.go

    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_InitConfiguration assigns default values for the InitConfiguration
    func SetDefaults_InitConfiguration(obj *InitConfiguration) {
    	SetDefaults_BootstrapTokens(obj)
    	SetDefaults_APIEndpoint(&obj.LocalAPIEndpoint)
    	SetDefaults_NodeRegistration(&obj.NodeRegistration)
    }
    
    // SetDefaults_ClusterConfiguration assigns default values for the ClusterConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top