Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for 1001Gi (0.13 sec)

  1. src/cmd/compile/internal/ssa/poset_test.go

    		{Ordered_Fail, 123, 124},
    
    		// Dag #0: 100<101
    		{Checkpoint, 0, 0},
    		{SetOrder, 100, 101},
    		{Ordered, 100, 101},
    		{Ordered_Fail, 101, 100},
    		{SetOrder_Fail, 101, 100},
    		{SetOrder, 100, 101}, // repeat
    		{NonEqual, 100, 101},
    		{NonEqual, 101, 100},
    		{SetEqual_Fail, 100, 101},
    
    		// Dag #1: 4<=7<12
    		{Checkpoint, 0, 0},
    		{SetOrderOrEqual, 4, 7},
    		{OrderedOrEqual, 4, 7},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  2. api/maven-api-plugin/src/main/mdo/plugin.mdo

            <field>
              <name>instantiationStrategy</name>
              <version>1.0.0/1.1.0</version>
              <type>String</type>
              <defaultValue>per-lookup</defaultValue>
              <description>Specify the instantiation strategy.</description>
            </field>
            <field>
              <name>executionStrategy</name>
              <version>1.0.0/1.1.0</version>
              <type>String</type>
              <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. api/maven-api-settings/src/main/mdo/settings.mdo

          <description>
            common base class that contains code to track the source for
            this instance (USER|GLOBAL)
          </description>
          <codeSegments>
            <codeSegment>
              <version>1.0.0/1.3.0</version>
              <code>
        public static final String USER_LEVEL = "user-level";
        public static final String PROJECT_LEVEL = "project-level";
        public static final String GLOBAL_LEVEL = "global-level";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. tests/scanner_valuer_test.go

    	}
    
    	if !reflect.DeepEqual([]interface{}{"jinzhu", "POINT(100 100)"}, stmt.Vars) {
    		t.Errorf("generated vars is not equal, got %v", stmt.Vars)
    	}
    
    	stmt = dryRunDB.Model(UserWithPoint{}).Create(map[string]interface{}{
    		"Name":  "jinzhu",
    		"Point": clause.Expr{SQL: "ST_PointFromText(?)", Vars: []interface{}{"POINT(100 100)"}},
    	}).Statement
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 07 07:02:07 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. cmd/metrics-resource.go

    				if hm.CPU.CPUCount > 0 {
    					perc := math.Round(ls.Load1*100*100/float64(hm.CPU.CPUCount)) / 100
    					updateResourceMetrics(cpuSubsystem, cpuLoad1Perc, perc, labels, false)
    					perc = math.Round(ls.Load5*100*100/float64(hm.CPU.CPUCount)) / 100
    					updateResourceMetrics(cpuSubsystem, cpuLoad5Perc, perc, labels, false)
    					perc = math.Round(ls.Load15*100*100/float64(hm.CPU.CPUCount)) / 100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

        data.write("8064".decodeHex()).write(bytes, 100, 100)
        clientReader.processNextFrame()
        callback.assertBinaryMessage(bytes)
      }
    
      @Test fun twoFrameNotContinuation() {
        val bytes = binaryData(200)
        data.write("0264".decodeHex()).write(bytes, 0, 100)
        data.write("8264".decodeHex()).write(bytes, 100, 100)
        assertFailsWith<ProtocolException> {
          clientReader.processNextFrame()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. api/maven-api-metadata/src/main/mdo/metadata.mdo

                <type>Plugin</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
              <version>1.0.0/1.1.0</version>
              <code><![CDATA[
        private String getSnapshotVersionKey( SnapshotVersion sv )
        {
            return sv.getClassifier() + ":" + sv.getExtension();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pkg/proxy/endpointslicecache_test.go

    					&BaseEndpointInfo{ip: "10.0.1.3", port: 80, endpoint: "10.0.1.3:80", isLocal: false, ready: true, serving: true, terminating: false},
    					&BaseEndpointInfo{ip: "10.0.1.4", port: 80, endpoint: "10.0.1.4:80", isLocal: false, ready: true, serving: true, terminating: false},
    					&BaseEndpointInfo{ip: "10.0.1.5", port: 80, endpoint: "10.0.1.5:80", isLocal: false, ready: true, serving: true, terminating: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. pkg/log/config.go

    	t = t.UTC()
    	year, month, day := t.Date()
    	hour, minute, second := t.Clock()
    	micros := t.Nanosecond() / 1000
    
    	buf := make([]byte, 27)
    
    	buf[0] = byte((year/1000)%10) + '0'
    	buf[1] = byte((year/100)%10) + '0'
    	buf[2] = byte((year/10)%10) + '0'
    	buf[3] = byte(year%10) + '0'
    	buf[4] = '-'
    	buf[5] = byte((month)/10) + '0'
    	buf[6] = byte((month)%10) + '0'
    	buf[7] = '-'
    	buf[8] = byte((day)/10) + '0'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

        }
    
        @Test
        void testConsecutiveDelimiters() {
            assertOrder(X_EQ_Y, "1.0.1", "1..1");
            assertOrder(X_EQ_Y, "1.0.0.1", "1...1");
            assertOrder(X_EQ_Y, "1.0.1", "1--1");
            assertOrder(X_EQ_Y, "1.0.0.1", "1---1");
        }
    
        @Test
        void testUnlimitedNumberOfVersionComponents() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top