Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for 5552 (0.04 sec)

  1. src/hash/adler32/adler32.go

    const (
    	// mod is the largest prime that is less than 65536.
    	mod = 65521
    	// nmax is the largest n such that
    	// 255 * n * (n+1) / 2 + (n+1) * (mod-1) <= 2^32-1.
    	// It is mentioned in RFC 1950 (search for "5552").
    	nmax = 5552
    )
    
    // The size of an Adler-32 checksum in bytes.
    const Size = 4
    
    // digest represents the partial evaluation of a checksum.
    // The low 16 bits are s1, the high 16 bits are s2.
    type digest uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    	SYS_SHUTDOWN                = 5047
    	SYS_BIND                    = 5048
    	SYS_LISTEN                  = 5049
    	SYS_GETSOCKNAME             = 5050
    	SYS_GETPEERNAME             = 5051
    	SYS_SOCKETPAIR              = 5052
    	SYS_SETSOCKOPT              = 5053
    	SYS_GETSOCKOPT              = 5054
    	SYS_CLONE                   = 5055
    	SYS_FORK                    = 5056
    	SYS_EXECVE                  = 5057
    	SYS_EXIT                    = 5058
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go

    	SYS_SHUTDOWN                = 5047
    	SYS_BIND                    = 5048
    	SYS_LISTEN                  = 5049
    	SYS_GETSOCKNAME             = 5050
    	SYS_GETPEERNAME             = 5051
    	SYS_SOCKETPAIR              = 5052
    	SYS_SETSOCKOPT              = 5053
    	SYS_GETSOCKOPT              = 5054
    	SYS_CLONE                   = 5055
    	SYS_FORK                    = 5056
    	SYS_EXECVE                  = 5057
    	SYS_EXIT                    = 5058
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	                   Exponent: 65537 (0x10001)
    	           X509v3 extensions:
    	               X509v3 Subject Key Identifier:
    	                   56:A5:55:02:8C:97:FD:1E:A0:B8:DE:EF:5E:95:F0:AC:A6:23:6F:16
    	               X509v3 Authority Key Identifier:
    	                   56:A5:55:02:8C:97:FD:1E:A0:B8:DE:EF:5E:95:F0:AC:A6:23:6F:16
    	               X509v3 Basic Constraints: critical
    	                   CA:TRUE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopySpecIntegrationSpec.groovy

            false // TODO This test can pass on Windows with proper locale, this force the test to fail, remove once fixed
        }
    
        @Requires(UnitTestPreconditions.UnixDerivative)
        @Issue("https://github.com/gradle/gradle/issues/2552")
        def "copying files to a directory with named pipes fails"() {
            def input = file("input.txt").createFile()
    
            def outputDirectory = file("output").createDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:45:30 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

            then:
            assertThat(result.output, containsString('hello'))
    
            and:
            proxyServer.requestCount == 2
        }
    
        @Issue('https://github.com/gradle/gradle/issues/5052')
        def "downloads wrapper via authenticated proxy"() {
            given:
            proxyServer.start('my_user', 'my_password')
    
            and:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/shift_test.go

    	return uint16(x)
    }
    
    func TestShiftOverflow(t *testing.T) {
    	if v, w, z := variableShiftOverflow64x8(-64, makeU8(255), 2); v != -32 || w != -128 || z != 0x7fffffffffffffe0 {
    		t.Errorf("got %d %d 0x%x, expected -32 -128 0x7fffffffffffffe0", v, w, z)
    	}
    	if v, w, z := variableShiftOverflow32x8(-64, makeU8(255), 2); v != -32 || w != -128 || z != 0x7fffffe0 {
    		t.Errorf("got %d %d 0x%x, expected -32 -128 0x7fffffe0", v, w, z)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

         * When this issue gets fixed in a future Kotlin version, remove -XXLanguage:-TypeEnhancementImprovementsInStrictMode from Kotlin DSL compiler arguments.
         */
        @Test
        @Issue("https://youtrack.jetbrains.com/issue/KT-55542")
        @ToBeImplemented
        fun `nullable type parameters on non-nullable member works without disabling Koltlin type enhancement improvements in strict mode`() {
            withBuildScript("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/go/ast/example_test.go

    	//     44  .  .  .  .  .  }
    	//     45  .  .  .  .  }
    	//     46  .  .  .  .  Rbrace: 5:1
    	//     47  .  .  .  }
    	//     48  .  .  }
    	//     49  .  }
    	//     50  .  FileStart: 1:1
    	//     51  .  FileEnd: 5:3
    	//     52  .  Scope: *ast.Scope {
    	//     53  .  .  Objects: map[string]*ast.Object (len = 1) {
    	//     54  .  .  .  "main": *(obj @ 11)
    	//     55  .  .  }
    	//     56  .  }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/array_grad_test.cc

      TensorShape x_shape({5, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      auto y = Diag(scope_, x);
      TensorShape y_shape({5, 2, 5, 2});
      RunTest(x, x_shape, y, y_shape);
    }
    
    TEST_F(ArrayGradTest, DiagPartGrad) {
      TensorShape x_shape({5, 2, 5, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      auto y = DiagPart(scope_, x);
      TensorShape y_shape({5, 2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top