Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 220 for 4400 (0.24 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-AES256-GCM-SHA384

    00000040  00 00 00 00 00 00 00 00  00 00 00 00 00 32 cc a9  |.............2..|
    00000050  cc a8 c0 2b c0 2f c0 2c  c0 30 c0 09 c0 13 c0 0a  |...+./.,.0......|
    00000060  c0 14 00 9c 00 9d 00 2f  00 35 c0 12 00 0a c0 23  |......./.5.....#|
    00000070  c0 27 00 3c c0 07 c0 11  00 05 13 03 13 01 13 02  |.'.<............|
    00000080  01 00 00 7f 00 0b 00 02  01 00 ff 01 00 01 00 00  |................|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    				},
    				SizeBytes: int64(900 * mb),
    			},
    		},
    	}
    
    	node400030 := v1.NodeStatus{
    		Images: []v1.ContainerImage{
    			{
    				Names: []string{
    					"gcr.io/4000:latest",
    				},
    				SizeBytes: int64(4000 * mb),
    			},
    			{
    				Names: []string{
    					"gcr.io/30:latest",
    				},
    				SizeBytes: int64(30 * mb),
    			},
    		},
    	}
    
    	node203040 := v1.NodeStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.0.0.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <!-- START SNIPPET: superpom -->
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
      </properties>
    
      <build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    			requestedPod: st.MakePod().Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    			},
    			existingPods:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStatsTest.groovy

                    new GarbageCollectionEvent(2000, new MemoryUsage(0, 500, 1000, 1000), 3),
                    new GarbageCollectionEvent(3000, new MemoryUsage(0, 750, 1000, 1000), 6),
                    new GarbageCollectionEvent(4000, new MemoryUsage(0, 900, 1000, 1000), 13)
            ]
        }
    
        def getNonHeapEvents() {
            return [
                    new GarbageCollectionEvent(0000, new MemoryUsage(0, 500, 1000, 1000), 0),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/commandLineTutorialTasks.graphml

              <y:Shape type="roundrectangle"/>
            </y:ShapeNode>
          </data>
        </node>
        <node id="n2">
          <data key="d6">
            <y:ShapeNode>
              <y:Geometry height="30.0" width="140.0" x="540.0" y="7.035714285714285"/>
              <y:Fill color="#C3D9E6" transparent="false"/>
              <y:BorderStyle color="#000000" type="line" width="1.0"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    re,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}a...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/nio/PosixFilePermissionConverter.java

    public class PosixFilePermissionConverter {
    
        public static Set<PosixFilePermission> convertToPermissionsSet(int mode) {
            Set<PosixFilePermission> result = EnumSet.noneOf(PosixFilePermission.class);
    
            if (isSet(mode, 0400)) {
                result.add(OWNER_READ);
            }
            if (isSet(mode, 0200)) {
                result.add(OWNER_WRITE);
            }
            if (isSet(mode, 0100)) {
                result.add(OWNER_EXECUTE);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/scanner_test.go

    		{`'\y'`, "unknown escape", 0, 2},
    		{`'\x0'`, "invalid character '\\'' in hexadecimal escape", 0, 4},
    		{`'\00'`, "invalid character '\\'' in octal escape", 0, 4},
    		{`'\377' /*`, "comment not terminated", 0, 7}, // valid octal escape
    		{`'\378`, "invalid character '8' in octal escape", 0, 4},
    		{`'\400'`, "octal escape value 256 > 255", 0, 5},
    		{`'xx`, "rune literal not terminated", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/css/fonts.css

      unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
    }
    /* greek-ext */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 400;
      src: local('Roboto Italic'), local('Roboto-Italic'), url(https://fonts.gstatic.com/s/roboto/v19/KFOkCnqEu92Fr1Mu51xEIzIXKMnyrYk.woff2) format('woff2');
      unicode-range: U+1F00-1FFF;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
Back to top