Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 322 for Assignment (0.21 sec)

  1. src/cmd/compile/internal/types2/operand.go

    	variable                     // operand is an addressable variable
    	mapindex                     // operand is a map index expression (acts like a variable on lhs, commaok on rhs of an assignment)
    	value                        // operand is a computed value
    	nilvalue                     // operand is the nil value - only used by types2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

    This element was created by testrule > create(item) and can be mutated as the following types:
      - ${fullyQualifiedNameOf(itemClass)} (or assignment compatible type thereof)
      - ${ModelElement.name} (or assignment compatible type thereof)"""
        }
    
        static class NamedRules extends RuleSource {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	comments   []Comment // accumulated comments
    
    	// Parser state.
    	file        *FileSyntax // returned top-level syntax tree
    	parseErrors ErrorList   // errors encountered during parsing
    
    	// Comment assignment state.
    	pre  []Expr // all expressions, in preorder traversal
    	post []Expr // all expressions, in postorder traversal
    }
    
    func newInput(filename string, data []byte) *input {
    	return &input{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMaker.java

       * Guides the allowed concurrency among update operations. Used as a hint for internal sizing. The
       * table is internally partitioned to try to permit the indicated number of concurrent updates
       * without contention. Because assignment of entries to these partitions is not necessarily
       * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. src/html/template/js_test.go

    		{jsCtxDivOp, ")"},
    		{jsCtxDivOp, "]"},
    		// At the start of a primary expression, array, or expression
    		// statement, expect a regexp.
    		{jsCtxRegexp, "("},
    		{jsCtxRegexp, "["},
    		{jsCtxRegexp, "{"},
    		// Assignment operators precede regexps as do all exclusively
    		// prefix and binary operators.
    		{jsCtxRegexp, "="},
    		{jsCtxRegexp, "+="},
    		{jsCtxRegexp, "*="},
    		{jsCtxRegexp, "*"},
    		{jsCtxRegexp, "!"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    A tf_device.parallel_execute inside the tf_device.replicate op region may be
    used to represent computations across a larger set of devices. In that case, the
    device alias can be used to specify device assignment and replication of each
    concurrent execution (i.e. region) defined by tf_device.parallel_execute op.
    The size of each value list in the device name map must match `n`. Within a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      options.device_set = device_set.get();
      options.session_options = &session_options;
    
      // Scope::ToGraph seems to drop assigned devices, probably because it goes
      // through a GraphDef.  So explicitly maintain the device assignment.
      std::unordered_map<string, string> assigned_device_names;
      for (Node* n : s.graph()->nodes()) {
        assigned_device_names[n->name()] = n->assigned_device_name();
      }
      TF_RETURN_IF_ERROR(s.ToGraph(graph.get()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    			}
    			// Forget the watcher if it was registered.
    			//
    			// This is race-free because by this point, one of the following occurred:
    			// case <-shouldStartWatchCh: execute() completed the assignment to forgetWatch
    			// case <-resultCh: Handle() completed, and Handle() does not return
    			//   while execute() is running
    			if forgetWatch != nil {
    				forgetWatch()
    			}
    		}()
    
    		execute := func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

        // of the values gets evicted. With weak keys, we use identity equality, which means using
        // System.identityHashCode, which means the assignment of keys to segments is nondeterministic,
        // so more than (maximumSize / #segments) keys could get assigned to the same segment, which
        // would cause one to be evicted.
        return new CacheBuilderFactory()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. pilot/test/xdstest/extract.go

    				healthy = append(healthy, addrString)
    			} else {
    				unhealthy = append(unhealthy, addrString)
    			}
    		}
    	}
    	return healthy, unhealthy
    }
    
    // ExtractEndpoints returns all endpoints in the load assignment (including unhealthy endpoints)
    func ExtractEndpoints(cla *endpoint.ClusterLoadAssignment) []string {
    	h, uh := ExtractHealthEndpoints(cla)
    	h = append(h, uh...)
    	return h
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top