Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 677 for assignments (0.16 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

      std::array<Predicate*, 2> operands_;
      std::vector<string> frame_;
    };
    
    // Represents an uninterpreted symbol in a logical predicate.
    //
    // Two predicates are equivalent iff they are equivalent for all assignments to
    // the symbols contained in them, i.e. predicates are forall qualified over
    // symbols.
    class SymbolPredicate : public Predicate {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       * thread.
       */
      private static final class ThreadConfinedTaskQueue {
        /**
         * This field is only used for identity comparisons with the current thread. Field assignments
         * are atomic, but do not provide happens-before ordering; however:
         *
         * <ul>
         *   <li>If this field's value == currentThread, we know that it's up to date, because write
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       * thread.
       */
      private static final class ThreadConfinedTaskQueue {
        /**
         * This field is only used for identity comparisons with the current thread. Field assignments
         * are atomic, but do not provide happens-before ordering; however:
         *
         * <ul>
         *   <li>If this field's value == currentThread, we know that it's up to date, because write
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/subr.go

    	}
    
    	// 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)
  5. src/text/template/parse/parse_test.go

    	{"break in range else", "{{range .}}{{else}}{{break}}{{end}}", hasError, ""},
    	{"continue in range else", "{{range .}}{{else}}{{continue}}{{end}}", hasError, ""},
    	// Other kinds of assignments and operators aren't available yet.
    	{"bug0a", "{{$x := 0}}{{$x}}", noError, "{{$x := 0}}{{$x}}"},
    	{"bug0b", "{{$x += 1}}{{$x}}", hasError, ""},
    	{"bug0c", "{{$x ! 2}}{{$x}}", hasError, ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/text/template/parse/parse.go

    //	declarations? command ('|' command)*
    func (t *Tree) pipeline(context string, end itemType) (pipe *PipeNode) {
    	token := t.peekNonSpace()
    	pipe = t.newPipeline(token.pos, token.line, nil)
    	// Are there declarations or assignments?
    decls:
    	if v := t.peekNonSpace(); v.typ == itemVariable {
    		t.next()
    		// Since space is a token, we need 3-token look-ahead here in the worst case:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. test/live_regabi.go

    	x = "hello"
    	return
    }
    
    // ignoring block returns used to cause "live at entry to f8: x, y".
    
    func f8() (x, y string) {
    	return g8()
    }
    
    func g8() (string, string)
    
    // ignoring block assignments used to cause "live at entry to f9: x"
    // issue 7205
    
    var i9 interface{}
    
    func f9() bool {
    	g8()
    	x := i9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder_test.go

    							}
    						}
    					}
    				}
    			}
    
    			// Validate that ORIGINAL_DST cluster does not have load assignments
    			for _, subset := range subsetClusters {
    				if subset.GetType() == cluster.Cluster_ORIGINAL_DST && subset.GetLoadAssignment() != nil {
    					t.Errorf("Passthrough subsets should not have load assignments")
    				}
    			}
    			if ec.cluster.GetType() == cluster.Cluster_ORIGINAL_DST && ec.cluster.GetLoadAssignment() != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/controller/repairip.go

    // and then creates the accurate list of IPAddresses objects with all allocated ClusterIPs.
    //
    // Handles:
    // * Duplicate ClusterIP assignments caused by operator action or undetected race conditions
    // * Allocations to services that were not actually created due to a crash or powerloss
    // * Migrates old versions of Kubernetes services into the new ipallocator automatically
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_4x.md

     [fun_interface]: https://kotlinlang.org/docs/reference/fun-interfaces.html
     [iana_websocket]: https://www.iana.org/assignments/websocket/websocket.txt
     [jetty_8_252]: https://webtide.com/jetty-alpn-java-8u252/
     [kotlin_1_3_71]: https://github.com/JetBrains/kotlin/releases/tag/v1.3.71
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top