Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 268 for Assignment (0.62 sec)

  1. src/runtime/map_fast64.go

    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapassign_fast64
    func mapassign_fast64(t *maptype, h *hmap, key uint64) unsafe.Pointer {
    	if h == nil {
    		panic(plainError("assignment to entry in nil map"))
    	}
    	if raceenabled {
    		callerpc := getcallerpc()
    		racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapassign_fast64))
    	}
    	if h.flags&hashWriting != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/runtime/map_fast32.go

    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapassign_fast32
    func mapassign_fast32(t *maptype, h *hmap, key uint32) unsafe.Pointer {
    	if h == nil {
    		panic(plainError("assignment to entry in nil map"))
    	}
    	if raceenabled {
    		callerpc := getcallerpc()
    		racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapassign_fast32))
    	}
    	if h.flags&hashWriting != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. doc/go_spec.html

    IncDec statement    Assignment
    x++                 x += 1
    x--                 x -= 1
    </pre>
    
    
    <h3 id="Assignment_statements">Assignment statements</h3>
    
    <p>
    An <i>assignment</i> replaces the current value stored in a <a href="#Variables">variable</a>
    with a new value specified by an <a href="#Expressions">expression</a>.
    An assignment statement may assign a single value to a single variable, or multiple values to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. src/internal/types/testdata/check/builtins0.go

    	assert(_5 == 2)
    	f32 = _5
    	f64 = _5
    	const _6 = imag(0i)
    	assert(_6 == 0)
    	f32 = imag(c64)
    	f64 = imag(c128)
    	f32 = imag /* ERRORx `cannot use .* in assignment` */ (c128)
    	f64 = imag /* ERRORx `cannot use .* in assignment` */ (c64)
    	imag /* ERROR "not used" */ (c64)
    	_, _ = f32, f64
    
    	// complex type may not be predeclared
    	type C64 complex64
    	type C128 complex128
    	var x64 C64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_util.h

      // Name and attributes of XLA computation function.
      const NameAttrList func_name_attrs;
      // The XLA computation node in the graph.
      Node* node;
      // A mapping from outside compilation cluster name to its device assignment.
      const std::map<string, int> host_compute_core;
    };
    
    // Finds dependencies between outside compilation clusters, including both data
    // dependencies and control dependencies. cluster_deps maps the name name of an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/ifrt/rewrite_cluster_to_ifrt_call.mlir

      return %outputs_0 : tensor<1x1xf32>
    }
    }
    
    
    // -----
    // Missing topology and device assignment attribute in spmd is ok
    
    // CHECK-LABEL: func.func @serving_default(%arg0: tensor<3x1xf32>, %arg1: tensor<1x3xf32>) -> tensor<1x1xf32> {
    // CHECK-NEXT:  %0 = "tf.IfrtCall"(%arg1, %arg0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 17 07:28:40 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    	internalcfg := &kubeadmapi.UpgradeConfiguration{}
    
    	// Takes passed flags into account; the defaulting is executed once again enforcing assignment of
    	// static default values to cfg only for values not provided with flags
    	kubeadmscheme.Scheme.Default(defaultversionedcfg)
    	if err := kubeadmscheme.Scheme.Convert(defaultversionedcfg, internalcfg, nil); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

        }
    
        /**
         * Tests whether a {@code from} type is assignable to {@code to} type
         *
         * @param to   a 'to' type that should be checked for possible assignment
         * @param from a 'from' type that should be checked for possible assignment
         * @return whether an object of type {@code from} is assignable to an object of type {@code to}
         */
        public static boolean isAssignable(Type to, Type from) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/range_allocator.go

    			return fmt.Errorf("failed to allocate cidr from cluster cidr at idx:%v: %v", idx, err)
    		}
    		allocatedCIDRs[idx] = podCIDR
    	}
    
    	//queue the assignment
    	logger.V(4).Info("Putting node with CIDR into the work queue", "node", klog.KObj(node), "CIDRs", allocatedCIDRs)
    	return r.updateCIDRsAllocation(ctx, node.Name, allocatedCIDRs)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

    package org.gradle.internal.declarativedsl.parsing
    
    import org.gradle.internal.declarativedsl.language.AccessChain
    import org.gradle.internal.declarativedsl.language.Assignment
    import org.gradle.internal.declarativedsl.language.Block
    import org.gradle.internal.declarativedsl.language.DataStatement
    import org.gradle.internal.declarativedsl.language.Element
    import org.gradle.internal.declarativedsl.language.ElementResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top