Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for 57 (0.17 sec)

  1. maven-core/src/test/remote-repo/org/apache/maven/plugins/maven-resources-plugin/0.1/maven-resources-plugin-0.1.jar

    core. 2009 maven-core-it file:///${basedir}/repo true true org.apache.maven maven-plugin-api 2.0 . pom.xml src/** src/main/resources META-INF/maven/org.apache.maven.plugins/maven-resources-plugin/pom.properties #Generated by Maven #Sat Oct 24 00:49:57 CEST 2009 version=0.1 groupId=org.apache.maven.plugins artifactId=maven-resources-plugin...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

         */
        @Override
        protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            SMBUtil.writeInt2(57, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt4(this.controlCode, dst, dstIndex);
            dstIndex += 4;
            System.arraycopy(this.fileId, 0, dst, dstIndex, 16);
            dstIndex += 16;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 07:13:17 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  3. cmd/erasure-healing-common_test.go

    		VersionID:        "",
    		IsLatest:         true,
    		Deleted:          false,
    		DataDir:          "6f5c106d-9d28-4c85-a7f4-eac56225876b",
    		ModTime:          time.Date(2023, time.March, 15, 19, 57, 30, 492530160, time.UTC),
    		Size:             329289,
    		Mode:             0x0,
    		WrittenByVersion: 0x63c77756,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 30 20:43:25 GMT 2024
    - 23K bytes
    - Viewed (1)
  4. docs/en/docs/img/deployment/https/https.drawio

                    </mxCell>
                    <mxCell id="58" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=3;dashed=1;startArrow=none;" edge="1" parent="1" source="102" target="57">
                        <mxGeometry relative="1" as="geometry">
                            <mxPoint x="410" y="400" as="targetPoint"/>
                            <mxPoint x="585" y="1050" as="sourcePoint"/>
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 25.7K bytes
    - Viewed (0)
  5. src/archive/zip/reader_test.go

    				Size:     1<<32 - 1,
    				Modified: time.Date(2017, 10, 31, 21, 11, 57, 244817900, timeZone(-7*time.Hour)),
    				Mode:     0666,
    			},
    		},
    	},
    	{
    		Name: "time-infozip.zip",
    		File: []ZipTestFile{
    			{
    				Name:     "test.txt",
    				Content:  []byte{},
    				Size:     1<<32 - 1,
    				Modified: time.Date(2017, 10, 31, 21, 11, 57, 0, timeZone(-7*time.Hour)),
    				Mode:     0644,
    			},
    		},
    	},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            for ( int i = 0; i < data.length; i++ ) {
                char c = data[ i ];
                if ( c < 48 || c > 57 ) {
                    return doNameQuery(name, svr);
                }
                int b = 0x00;
                while ( c != '.' ) {
                    if ( c < 48 || c > 57 ) {
                        return doNameQuery(name, svr);
                    }
                    b = b * 10 + c - '0';
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

        fakeTicker.advance(501, TimeUnit.MILLISECONDS);
    
        int sum = 0;
        for (Entry<Integer, Integer> current : cache.asMap().entrySet()) {
          sum += current.getKey() + current.getValue();
        }
        assertEquals(57, sum);
      }
    
      public void testAsMapValues_iteratorRemove() {
        Cache<Integer, Integer> cache =
            CacheBuilder.newBuilder()
                .expireAfterWrite(1000, TimeUnit.MILLISECONDS)
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Aug 05 17:21:46 GMT 2022
    - 15.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/math/MathTesting.java

        longValues.add(Integer.MAX_VALUE + 1L, Long.MAX_VALUE - 1L, Long.MAX_VALUE);
    
        // Now add values near 2^N for lots of values of N.
        for (int exponent : asList(32, 33, 39, 40, 41, 47, 48, 49, 55, 56, 57)) {
          long x = 1L << exponent;
          longValues.add(x, x + 1, x - 1);
        }
        longValues.add(194368031998L).add(194368031999L); // sqrt(2^75) rounded up and down
        POSITIVE_LONG_CANDIDATES = longValues.build();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 11.2K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/FormBodyTest.kt

        assertThat(formEncode(45)).isEqualTo("-")
        assertThat(formEncode(46)).isEqualTo(".")
        assertThat(formEncode(47)).isEqualTo("%2F")
        assertThat(formEncode(48)).isEqualTo("0")
        assertThat(formEncode(57)).isEqualTo("9")
        assertThat(formEncode(58)).isEqualTo("%3A")
        assertThat(formEncode(59)).isEqualTo("%3B")
        assertThat(formEncode(60)).isEqualTo("%3C")
        assertThat(formEncode(61)).isEqualTo("%3D")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

        fakeTicker.advance(501, TimeUnit.MILLISECONDS);
    
        int sum = 0;
        for (Entry<Integer, Integer> current : cache.asMap().entrySet()) {
          sum += current.getKey() + current.getValue();
        }
        assertEquals(57, sum);
      }
    
      public void testAsMapValues_iteratorRemove() {
        Cache<Integer, Integer> cache =
            CacheBuilder.newBuilder()
                .expireAfterWrite(1000, TimeUnit.MILLISECONDS)
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 15K bytes
    - Viewed (0)
Back to top