Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for i22600 (0.28 sec)

  1. src/image/png/testdata/pngsuite/ftbyn3p08.sng

        (135,135,135)     # rgb = (0x87,0x87,0x87) grey53
        (  0,  0,178)     # rgb = (0x00,0x00,0xb2)
        (133,133,133)     # rgb = (0x85,0x85,0x85) grey52
        (165,  0,  0)     # rgb = (0xa5,0x00,0x00)
        (222,  0,  0)     # rgb = (0xde,0x00,0x00)
        (129,129,129)     # rgb = (0x81,0x81,0x81)
        (127,127,127)     # rgb = (0x7f,0x7f,0x7f) grey50
        (  0,  0,158)     # rgb = (0x00,0x00,0x9e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 13.8K bytes
    - Viewed (0)
  2. src/image/png/testdata/pngsuite/ftp0n3p08.sng

        (135,135,135)     # rgb = (0x87,0x87,0x87) grey53
        (  0,  0,178)     # rgb = (0x00,0x00,0xb2)
        (133,133,133)     # rgb = (0x85,0x85,0x85) grey52
        (165,  0,  0)     # rgb = (0xa5,0x00,0x00)
        (222,  0,  0)     # rgb = (0xde,0x00,0x00)
        (129,129,129)     # rgb = (0x81,0x81,0x81)
        (127,127,127)     # rgb = (0x7f,0x7f,0x7f) grey50
        (  0,  0,158)     # rgb = (0x00,0x00,0x9e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 13.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

            lib.artifact.expectGet()
            lib2.pom.expectGet()
            lib2.artifact.expectGet()
    
            then:
            succeeds ':checkDeps'
        }
    
    
        @Issue("https://github.com/gradle/gradle/issues/22650")
        def "can use the generated extension to declare a dependency constraint with and without sub-group using bundles"() {
            settingsKotlinFile << """
                dependencyResolutionManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. test/fixedbugs/issue2615.go

    	} else if x[2]&(1<<56) != 0 {
    		return 184
    	} else if x[2]&(1<<57) != 0 {
    		return 185
    	} else if x[2]&(1<<58) != 0 {
    		return 186
    	} else if x[2]&(1<<59) != 0 {
    		return 187
    	} else if x[2]&(1<<60) != 0 {
    		return 188
    	} else if x[2]&(1<<61) != 0 {
    		return 189
    	} else if x[2]&(1<<62) != 0 {
    		return 190
    	} else if x[2]&(1<<63) != 0 {
    		return 191
    	} else if x[3]&(1<<0) != 0 {
    		return 192
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 11.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

       ([#122697](https://github.com/kubernetes/kubernetes/pull/122697), [@pacoxu](https://github.com/pacoxu))
    - Used `errors.Is()` to handle errors returned by `LookPath()`.
       ([#122600](https://github.com/kubernetes/kubernetes/pull/122600), [@lzhecheng](https://github.com/lzhecheng))
    - kube-proxy: Fixed `LoadBalancerSourceRanges` not working for `nftables` mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/array_grad_test.cc

      auto y = GatherV2(scope_, x, {{0}, {0}}, /*axis=*/2, attrs);
      TensorShape y_shape({2, 1, 1});
      RunTest(x, shape, y, y_shape);
    }
    
    TEST_F(ArrayGradTest, GatherV2Grad_TwoBatchDims) {
      TensorShape shape({2, 2, 100});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      GatherV2::Attrs attrs;
      attrs.batch_dims_ = 2;
      auto y = GatherV2(scope_, x, {{{2, 0}, {2, 5}}, {{1, 1}, {7, 10}}},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    		if version := ipVersion(tt.network); version != tt.version {
    			t.Errorf("Family for: %s. Expected: %s, Got: %s", tt.network,
    				string(tt.version), string(version))
    		}
    	}
    }
    
    // Issue 28600: The context that is used to lookup ips should always
    // preserve the values from the context that was passed into LookupIPAddr.
    func TestLookupIPAddrPreservesContextValues(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/BigIntegerMath.java

       * mode}.
       *
       * <p>For the case of {@link RoundingMode#HALF_DOWN}, {@code HALF_UP}, and {@code HALF_EVEN},
       * infinite {@code double} values are considered infinitely far away. For example, 2^2000 is not
       * representable as a double, but {@code roundToDouble(BigInteger.valueOf(2).pow(2000), HALF_UP)}
       * will return {@code Double.MAX_VALUE}, not {@code Double.POSITIVE_INFINITY}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/BigIntegerMath.java

       * mode}.
       *
       * <p>For the case of {@link RoundingMode#HALF_DOWN}, {@code HALF_UP}, and {@code HALF_EVEN},
       * infinite {@code double} values are considered infinitely far away. For example, 2^2000 is not
       * representable as a double, but {@code roundToDouble(BigInteger.valueOf(2).pow(2000), HALF_UP)}
       * will return {@code Double.MAX_VALUE}, not {@code Double.POSITIVE_INFINITY}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

            run ":help"
    
            then:
            outputContains "Dependency verification has been disabled."
            hasModules(["org:foo"])
        }
    
        @Issue("https://github.com/gradle/gradle/issues/12260")
        def "doesn't fail writing verification file if a #artifact file is missing from local store"() {
            javaLibrary()
            uncheckedModule("org", "foo")
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top