Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 344 for differs (0.12 sec)

  1. src/crypto/cipher/cipher.go

    	// to pass a dst bigger than src, and in that case, XORKeyStream will
    	// only update dst[:len(src)] and will not touch the rest of dst.
    	//
    	// Multiple calls to XORKeyStream behave as if the concatenation of
    	// the src buffers was passed in a single run. That is, Stream
    	// maintains state and does not reset at each XORKeyStream call.
    	XORKeyStream(dst, src []byte)
    }
    
    // A BlockMode represents a block cipher running in a block-based mode (CBC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. src/crypto/rand/rand_darwin.go

    // license that can be found in the LICENSE file.
    
    package rand
    
    import "internal/syscall/unix"
    
    func init() {
    	// arc4random_buf is the recommended application CSPRNG, accepts buffers of
    	// any size, and never returns an error.
    	//
    	// "The subsystem is re-seeded from the kernel random number subsystem on a
    	// regular basis, and also upon fork(2)." - arc4random(3)
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 667 bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/primitives/UnsignedBytesBenchmark.java

      private int length;
    
      @BeforeExperiment
      void setUp() throws Exception {
        Random r = new Random();
        ba1 = new byte[length];
        r.nextBytes(ba1);
        ba2 = Arrays.copyOf(ba1, ba1.length);
        // Differ at the last element
        ba3 = Arrays.copyOf(ba1, ba1.length);
        ba4 = Arrays.copyOf(ba1, ba1.length);
        ba3[ba1.length - 1] = (byte) 43;
        ba4[ba1.length - 1] = (byte) 42;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

                """
            )
    
            and: "multiple sub-projects"
            settingsFile << """
                include 'foo:foo'
                include 'bar:bar'
            """
    
            // Make the classpath of :foo differ from :bar's
            // thus causing :foo:foo and :bar:bar to have separate ClassLoaders.
            File someLib = file('lib/someLib.jar')
            jarWithClasses(someLib, SomeClass: 'class SomeClass {}')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/StyledTableTest.groovy

                | foo       | bar         |
                | very long | short       |
                | tiny      | even longer |
            """.stripIndent(true).trim()
        }
    
        def "fails when header and row sizes differ"() {
            given:
            def header = ["a"]
            def rows = [
                new StyledTable.Row(["b"], StyledTextOutput.Style.Normal),
                new StyledTable.Row(["c"], StyledTextOutput.Style.Normal),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 25 00:22:38 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/legacy_reshape.json

              "outputs": [ 1 ],
              "builtin_options_type": "ReshapeOptions",
              "builtin_options": {
                "new_shape": [ 2, 2 ]
              }
            }
          ]
        }
      ],
      "buffers": []
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 986 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/buildid_linux.go

    			continue
    		}
    
    		d, err := s.Data()
    		if err != nil {
    			t.Logf("reading data of note section %d: %v", i, err)
    			continue
    		}
    
    		for len(d) > 0 {
    
    			// ELF standards differ as to the sizes in
    			// note sections.  Both the GNU linker and
    			// gold always generate 32-bit sizes, so that
    			// is what we assume here.
    
    			if len(d) < 12 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/jvm/toolchain/internal/operations/JavaToolchainUsageProgressDetails.java

            /**
             * Returns Java VM version such as {@code 17.0.3.1+2-LTS}.
             * <p>
             * This value is identical to {@link #getRuntimeVersion()} for most of the vendors,
             * but could still differ for example by not including the language version.
             */
            String getJvmVersion();
    
            /**
             * Returns Java VM vendor such as {@code Eclipse Adoptium}.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/dynamic_shape_constant.mlir

    // CHECK-NEXT:      buffer: 1,
    // CHECK-NEXT:      name: "tfl.pseudo_const",
    // CHECK-NEXT:      quantization: {
    // CHECK-NEXT:
    // CHECK-NEXT:      },
    // CHECK-NEXT:      has_rank: true
    
    // CHECK:   buffers: [ {
    // CHECK-EMPTY:
    // CHECK-NEXT:   }, {
    // CHECK-NEXT:     data: [ 1, 0, 0, 0, 2, 0, 0, 0 ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 810 bytes
    - Viewed (0)
  10. src/go/doc/testdata/examples/issue43658.go

    	// Profile calls Modularize which implements the Louvain modularization algorithm.
    	// Since this is a randomized algorithm we use a defined random source to ensure
    	// consistency between test runs. In practice, results will not differ greatly
    	// between runs with different PRNG seeds.
    	src := rand.NewSource(1)
    
    	// Create dumbell graph:
    	//
    	//  0       4
    	//  |\     /|
    	//  | 2 - 3 |
    	//  |/     \|
    	//  1       5
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top