Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for Traverse (0.13 sec)

  1. src/go/types/expr.go

    typically when the value is assigned to a variable, or is used otherwise.
    The updateExprType method is used to record this final type and update
    the recorded types: the type-checked expression tree is again traversed down,
    and the new type is propagated as needed. Untyped constant expression values
    that become fully typed must now be representable by the full type (constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    		{`package u3c; type _ interface{int | string | ~bool}`, `~bool`, `~bool`},
    		{`package u3c; type _ interface{int | string | ~float64|~bool}`, `int | string | ~float64`, `int | string | ~float64`},
    
    		// reverse type inference
    		{`package r1; var _ func(int) = g; func g[P any](P) {}`, `g`, `func(int)`},
    		{`package r2; var _ func(int) = g[int]; func g[P any](P) {}`, `g`, `func[P any](P)`}, // go.dev/issues/60212
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    def EliminateCumSumInclusive : Pat<
      (TFL_CumsumOp
         $input,
         (Arith_ConstantOp I32ElementsAttr:$axis),
         ConstBoolAttrFalse,
         $reverse),
      (replaceWithValue $input),
      [(AreInputDimensionsOneInAxes $input, $axis)]>;
    
    // Fusing raw computation of GELU op into one native tfl_gelu op.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. src/time/format.go

    		b = append(b, '0')
    	}
    
    	// Ensure capacity.
    	if len(b)+n <= cap(b) {
    		b = b[:len(b)+n]
    	} else {
    		b = append(b, make([]byte, n)...)
    	}
    
    	// Assemble decimal in reverse order.
    	i := len(b) - 1
    	for u >= 10 && i > 0 {
    		q := u / 10
    		b[i] = utod(u - q*10)
    		u = q
    		i--
    	}
    	b[i] = utod(u)
    	return b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      private Listener clearListeners(@CheckForNull Listener onto) {
        // We need to
        // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that
        //    to synchronize with us
        // 2. reverse the linked list, because despite our rather clear contract, people depend on us
        //    executing listeners in the order they were added
        // 3. push all the items onto 'onto' and return the new head of the stack
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      private Listener clearListeners(@CheckForNull Listener onto) {
        // We need to
        // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that
        //    to synchronize with us
        // 2. reverse the linked list, because despite our rather clear contract, people depend on us
        //    executing listeners in the order they were added
        // 3. push all the items onto 'onto' and return the new head of the stack
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	_, _, err = p.TransformFromStorage(ctx, out, value.DefaultContext("incorrect_context"))
    	if err != nil {
    		t.Fatalf("CBC mode does not support authentication: %v", err)
    	}
    
    	// reverse the order, use the second key
    	p = getTransformerFromEncryptionConfig(t, secondEncryptionConfig)
    	from, stale, err = p.TransformFromStorage(ctx, out, dataCtx)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	}
    
    	// Make sure that there is a mutually supported cipher suite that works with
    	// this certificate. Cipher suite selection will then apply the logic in
    	// reverse to pick it. See also serverHandshakeState.cipherSuiteOk.
    	cipherSuite := selectCipherSuite(chi.CipherSuites, config.cipherSuites(), func(c *cipherSuite) bool {
    		if c.flags&suiteECDHE == 0 {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    	}()
    	// Execute the Unreserve operation of each reserve plugin in the
    	// *reverse* order in which the Reserve operation was executed.
    	logger := klog.FromContext(ctx)
    	verboseLogs := logger.V(4).Enabled()
    	if verboseLogs {
    		logger = klog.LoggerWithName(logger, "Unreserve")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    typically when the value is assigned to a variable, or is used otherwise.
    The updateExprType method is used to record this final type and update
    the recorded types: the type-checked expression tree is again traversed down,
    and the new type is propagated as needed. Untyped constant expression values
    that become fully typed must now be representable by the full type (constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top