Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 481 for 1011 (0.05 sec)

  1. src/cmd/internal/obj/inl.go

    // and g has two calls to h(), and that f, g, and h are inlineable:
    //
    //	 1 func main() {
    //	 2     f()
    //	 3 }
    //	 4 func f() {
    //	 5     g()
    //	 6 }
    //	 7 func g() {
    //	 8     h()
    //	 9     h()
    //	10 }
    //	11 func h() {
    //	12     println("H")
    //	13 }
    //
    // Assuming the global tree starts empty, inlining will produce the
    // following tree:
    //
    //	[]InlinedCall{
    //	  {Parent: -1, Func: "f", Pos: <line 2>},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

            multimap.putAll("bar", asList(4, 5));
            multimap.putAll("foo", asList(6));
            multimap.putAll("baz", asList(7, 8));
            multimap.putAll("dog", asList(9));
            multimap.putAll("bar", asList(10, 11));
            multimap.putAll("cat", asList(12, 13, 14));
            return multimap.keySet().iterator();
          }
    
          @Override
          protected void verify(List<String> elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/resolve/scenarios/VersionRangeResolveTestScenarios.groovy

        public static final PREFER_10_11 = prefer(10, 11)
        public static final PREFER_10_12 = prefer(10, 12)
        public static final PREFER_10_14 = prefer(10, 14)
        public static final PREFER_14_16 = prefer(14, 16)
        public static final RANGE_7_8 = range(7, 8)
        public static final RANGE_10_11 = range(10, 11)
        public static final RANGE_10_12 = range(10, 12)
        public static final RANGE_10_14 = range(10, 14)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/while_op.mlir

      },  {
      ^bb0(%arg2: tensor<*xi32>, %arg3: tensor<*xf32>):
        %1:2 = func.call @body(%arg2, %arg3) : (tensor<*xi32>, tensor<*xf32>) -> (tensor<*xi32>, tensor<*xf32>)
        "tfl.yield"(%1#0, %1#1) : (tensor<*xi32>, tensor<*xf32>) -> ()
      }) {is_stateless = false} : (tensor<i32>, tensor<1xf32>) -> (tensor<i32>, tensor<1xf32>)
      func.return %0#1 : tensor<1xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  5. fuzzing/fuzzingserver-expected.txt

    "1.1.1 OK"
    "1.1.2 OK"
    "1.1.3 OK"
    "1.1.4 OK"
    "1.1.5 OK"
    "1.1.6 OK"
    "1.1.7 OK"
    "1.1.8 OK"
    "1.2.1 OK"
    "1.2.2 OK"
    "1.2.3 OK"
    "1.2.4 OK"
    "1.2.5 OK"
    "1.2.6 OK"
    "1.2.7 OK"
    "1.2.8 OK"
    "10.1.1 OK"
    "12.1.1 UNIMPLEMENTED"
    "12.1.10 UNIMPLEMENTED"
    "12.1.11 UNIMPLEMENTED"
    "12.1.12 UNIMPLEMENTED"
    "12.1.13 UNIMPLEMENTED"
    "12.1.14 UNIMPLEMENTED"
    "12.1.15 UNIMPLEMENTED"
    "12.1.16 UNIMPLEMENTED"
    "12.1.17 UNIMPLEMENTED"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  6. tensorflow/cc/client/client_session_test.cc

        });
      }
      barrier.Block();
    
      TF_EXPECT_OK(session.RunCallable(
          callable,
          {test::AsTensor<int>({2}, {1, 1}), test::AsTensor<int>({10}, {1, 1})},
          &outputs, nullptr, threadPoolOptions));
      test::ExpectTensorEqual<int>(outputs[0], test::AsTensor<int>({20}, {1, 1}));
      TF_EXPECT_OK(session.ReleaseCallable(callable));
      ASSERT_GT(inter_op_threadpool->GetNumScheduleCalled(), 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/poset_test.go

    		{SetOrderOrEqual, 25, 10},
    
    		// Check that all nodes are pairwise equal now
    		{Equal, 10, 12},
    		{Equal, 10, 15},
    		{Equal, 10, 16},
    		{Equal, 10, 17},
    		{Equal, 10, 18},
    		{Equal, 10, 19},
    		{Equal, 10, vconst(20)},
    		{Equal, 10, vconst2(20)},
    		{Equal, 10, 25},
    
    		{Equal, 12, 15},
    		{Equal, 12, 16},
    		{Equal, 12, 17},
    		{Equal, 12, 18},
    		{Equal, 12, 19},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/IntMath.java

          case 0:
            return (k == 0) ? 1 : 0;
          case 1:
            return 1;
          case (-1):
            return ((k & 1) == 0) ? 1 : -1;
          case 2:
            return (k < Integer.SIZE) ? (1 << k) : 0;
          case (-2):
            if (k < Integer.SIZE) {
              return ((k & 1) == 0) ? (1 << k) : -(1 << k);
            } else {
              return 0;
            }
          default:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/tfl_while_op.mlir

      },  {
      ^bb0(%arg2: tensor<*xi32>, %arg3: tensor<*xf32>):
        %1:2 = func.call @WhileOp_body(%arg2, %arg3) : (tensor<*xi32>, tensor<*xf32>) -> (tensor<*xi32>, tensor<*xf32>)
        "tfl.yield"(%1#0, %1#1) : (tensor<*xi32>, tensor<*xf32>) -> ()
      }) : (tensor<i32>, tensor<1xf32>) -> (tensor<i32>, tensor<1xf32>) loc("WhileOp")
      func.return %0#1 : tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. src/crypto/cipher/cbc.go

    // Cipher block chaining (CBC) mode.
    
    // CBC provides confidentiality by xoring (chaining) each plaintext block
    // with the previous ciphertext block before applying the block cipher.
    
    // See NIST SP 800-38A, pp 10-11
    
    package cipher
    
    import (
    	"bytes"
    	"crypto/internal/alias"
    	"crypto/subtle"
    )
    
    type cbc struct {
    	b         Block
    	blockSize int
    	iv        []byte
    	tmp       []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top