Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Dd (0.02 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    ol {
    	margin-left: 1.75em;
    }
    
    ul li ol {
    	margin-left: 1.5em;
    }
    
    dl dd {
    	margin-left: 1.125em;
    }
    
    dl dd:last-child,
    dl dd:last-child> :last-child {
    	margin-bottom: 0;
    }
    
    ol>li p,
    ul>li p,
    ul dd,
    ol dd,
    .olist .olist,
    .ulist .ulist,
    .ulist .olist,
    .olist .ulist {
    	margin-bottom: 0.625em;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

                <pgp value="31BAE2E51D95E0F8AD9B7BCC40A3C4432BD7308C"/>
             </artifact>
          </component>
          <component group="com.googlecode.plist" name="dd-plist" version="1.27">
             <artifact name="dd-plist-1.27.jar">
                <pgp value="1CEED21A8E77F056ED2341A84410603103CE3AF4"/>
             </artifact>
          </component>
          <component group="com.gradleup" name="gr8-plugin" version="0.10">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    	var err error
    	if fi.VersionID != "" && fi.VersionID != nullVersionID {
    		uv, err = uuid.Parse(fi.VersionID)
    		if err != nil {
    			return err
    		}
    	}
    
    	var dd uuid.UUID
    	if fi.DataDir != "" {
    		dd, err = uuid.Parse(fi.DataDir)
    		if err != nil {
    			return err
    		}
    	}
    
    	ventry := xlMetaV2Version{
    		WrittenByVersion: globalVersionUnix,
    	}
    
    	if fi.Deleted {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    		t.Errorf("src1: unexpected error: got %v", err)
    	}
    }
    
    func TestModuleVersion(t *testing.T) {
    	// version go1.dd must be able to typecheck go1.dd.0, go1.dd.1, etc.
    	goversion := fmt.Sprintf("go1.%d", goversion.Version)
    	for _, v := range []string{
    		goversion,
    		goversion + ".0",
    		goversion + ".1",
    		goversion + ".rc",
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. src/time/time.go

    		hi -= n
    		lo += n * base
    	}
    	if lo >= base {
    		n := lo / base
    		hi += n
    		lo -= n * base
    	}
    	return hi, lo
    }
    
    // Date returns the Time corresponding to
    //
    //	yyyy-mm-dd hh:mm:ss + nsec nanoseconds
    //
    // in the appropriate zone for that time in the given location.
    //
    // The month, day, hour, min, sec, and nsec values may be outside
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top