Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for nPix (0.32 sec)

  1. src/image/gif/reader_test.go

    		b.WriteString(paletteStr)
    		// Write an image with bounds 2x1 but tc.nPix pixels. If tc.nPix != 2
    		// then this should result in an invalid GIF image. First, write a
    		// magic 0x2c (image descriptor) byte, bounds=(0,0)-(2,1), a flags
    		// byte, and 2-bit LZW literals.
    		b.WriteString("\x2c\x00\x00\x00\x00\x02\x00\x01\x00\x00\x02")
    		if tc.nPix > 0 {
    			enc := lzwEncode(make([]byte, tc.nPix))
    			if len(enc)+tc.extraExisting > 0xff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/image/gif/reader.go

    func uninterlace(m *image.Paletted) {
    	var nPix []uint8
    	dx := m.Bounds().Dx()
    	dy := m.Bounds().Dy()
    	nPix = make([]uint8, dx*dy)
    	offset := 0 // steps through the input by sequential scan lines.
    	for _, pass := range interlacing {
    		nOffset := pass.start * dx // steps through the output as defined by pass.
    		for y := pass.start; y < dy; y += pass.skip {
    			copy(nPix[nOffset:nOffset+dx], m.Pix[offset:offset+dx])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkSharedLibrary.html#org.gradle.nativeplatform.tasks.LinkSharedLibrary:linkedFile[linkedFile]:: `layout.buildDirectory.dir("lib/main/__$variant__/libBaseName[.so|dylib]")` (*nix) or `layout.buildDirectory.dir("lib\main{backslash}__$variant__\baseName.dll")` (Windows)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

            then:
            daemons.daemon.becomesIdle()
    
            and:
            daemons.daemon.log.contains(DaemonMessages.CANCELED_BUILD)
        }
    
        /**
         * When the daemon is started on *nix, we need to detach it from the terminal session of the parent process,
         * otherwise if a ctrl-c is entered on the terminal, it will kill all processes in the session.  This test compiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   }
    //
    //   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
    //
    // On the regular expressions used in death tests:
    //
    //   On POSIX-compliant systems (*nix), we use the <regex.h> library,
    //   which uses the POSIX extended regex syntax.
    //
    //   On other platforms (e.g. Windows), we only support a simple regex
    //   syntax implemented as part of Google Test.  This limited
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   }
    //
    //   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
    //
    // On the regular expressions used in death tests:
    //
    //   On POSIX-compliant systems (*nix), we use the <regex.h> library,
    //   which uses the POSIX extended regex syntax.
    //
    //   On other platforms (e.g. Windows), we only support a simple regex
    //   syntax implemented as part of Google Test.  This limited
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    === Permission denied
    
    If you get "permission denied", that means that Gradle likely exists in the correct place, but it is not executable.
    You can fix this using `chmod +x path/to/executable` on *nix-based systems.
    
    === Other installation failures
    
    If `gradle—- version` works, but all of your builds fail with the same error, it is possible that one of your Gradle build configuration scripts is broken.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html#org.gradle.nativeplatform.tasks.LinkExecutable:linkedFile[linkedFile]:: `layout.buildDirectory.dir("exe/test/__$variant__/baseName")` (*nix) or `layout.buildDirectory.dir("exe\test{backslash}__$variant__\baseName.exe")` (Windows)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html#org.gradle.nativeplatform.tasks.LinkExecutable:linkedFile[linkedFile]:: `layout.buildDirectory.dir("exe/main/__$variant__/baseName")` (*nix) or `layout.buildDirectory.dir("exe\main{backslash}__$variant__\baseName.exe")` (Windows)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

    import java.net.URISyntaxException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Properties;
    
    /**
     * <p>Generates scripts (for *nix and windows) which allow you to build your project with Gradle, without having to
     * install Gradle.
     *
     * <p>When a user executes a wrapper script the first time, the script downloads and installs the appropriate Gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top