Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,459 for ulong (0.15 sec)

  1. cmd/kubeadm/app/cmd/phases/init/certs.go

    	}
    
    	// SA creates the private/public key pair, which doesn't use x509 at all
    	saPhase := workflow.Phase{
    		Name:         "sa",
    		Short:        "Generate a private key for signing service account tokens along with its public key",
    		Long:         saKeyLongDesc,
    		Run:          runCertsSa,
    		InheritFlags: getCertPhaseFlags("sa"),
    	}
    
    	subPhases = append(subPhases, saPhase)
    
    	return subPhases
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

                    }
    
                    @Override
                    public HashCode hash(File file, long length, long lastModified) {
                        throw new UnsupportedOperationException();
                    }
                };
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. internal/arn/arn.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package arn
    
    import (
    	"errors"
    	"fmt"
    	"regexp"
    	"strings"
    )
    
    // ARN structure:
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. cmd/storage-errors.go

    // errTooManyOpenFiles - too many open files.
    var errTooManyOpenFiles = StorageErr("too many open files, please increase 'ulimit -n'")
    
    // errFileNameTooLong - given file name is too long than supported length.
    var errFileNameTooLong = StorageErr("file name too long")
    
    // errVolumeExists - cannot create same volume again.
    var errVolumeExists = StorageErr("volume already exists")
    
    // errIsNotRegular - not of regular file type.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/os/path_windows_test.go

    		{`long///foo.txt`, `\\?\C:\cwd\long\foo.txt`},
    		{`long\.\foo.txt`, `\\?\C:\cwd\long\foo.txt`},
    		{`long\..\foo.txt`, `\\?\C:\cwd\foo.txt`},
    		{`.\long\foo.txt`, `\\?\C:\cwd\long\foo.txt`},
    
    		// UNC Absolute
    		{`\\srv\share\long`, `\\?\UNC\srv\share\long`},
    		{`//srv/share/long`, `\\?\UNC\srv\share\long`},
    		{`/\srv/share/long`, `\\?\UNC\srv\share\long`},
    		{`\\srv\share\long\`, `\\?\UNC\srv\share\long\`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            long _10_bytes = 10L;
            assertEquals("10 B", format.format(_10_bytes));
    
            long _15_bytes = 15L;
            assertEquals("15 B", format.format(_15_bytes));
    
            long _999_bytes = 999L;
            assertEquals("999 B", format.format(_999_bytes));
    
            long _1000_bytes = 1000L;
            assertEquals("1.0 kB", format.format(_1000_bytes));
    
            long _5500_bytes = 5500L;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    //	stream: message ...
    //	message: prefix body
    //	prefix: 4 byte uint32 in BigEndian order, denotes length of body
    //	body: bytes (0..prefix)
    //
    // If the buffer passed to Read is not long enough to contain an entire frame, io.ErrShortRead
    // will be returned along with the number of bytes read.
    func NewLengthDelimitedFrameReader(r io.ReadCloser) io.ReadCloser {
    	return &lengthDelimitedFrameReader{r: r}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                    for (Map.Entry<Long, Map<Long, TestCaseRegion>> classEntry : index.entrySet()) {
                        Long classId = classEntry.getKey();
                        Map<Long, TestCaseRegion> regions = classEntry.getValue();
    
                        indexOutput.writeLong(classId, true);
                        indexOutput.writeInt(regions.size(), true);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

            this.currentTime.set(currentTimeMillis);
        }
    
        @Override
        public long getCurrentTime() {
            long nowNanos = timeSource.nanoTime();
            long syncNanos = syncNanosRef.get();
            long syncMillis = syncMillisRef.get();
            long sinceSyncNanos = nowNanos - syncNanos;
            long sinceSyncMillis = TimeUnit.NANOSECONDS.toMillis(sinceSyncNanos);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

    public class BuildProfile {
    
        private static final long NOT_INITIALIZED_VALUE = -1L;
        private final Map<String, ProjectProfile> projects = new LinkedHashMap<>();
        private final Map<String, ContinuousOperation> dependencySets = new LinkedHashMap<>();
        private final Map<String, FragmentedOperation> transforms = new LinkedHashMap<>();
        private long profilingStarted = NOT_INITIALIZED_VALUE;
        private long buildStarted = NOT_INITIALIZED_VALUE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top