Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 633 for shortly (0.11 sec)

  1. pkg/kubelet/util/util.go

    	const fqdnMaxLen = 64
    	if len(hostDomainName) > 0 && setHostnameAsFQDN != nil && *setHostnameAsFQDN {
    		fqdn := fmt.Sprintf("%s.%s", hostname, hostDomainName)
    		// FQDN has to be shorter than hostnameMaxLen characters.
    		if len(fqdn) > fqdnMaxLen {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 18:07:39 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/AbstractTestDirectoryProvider.java

                String safeMethodName = shortenPath(methodName.replaceAll("[^\\w]", "_"), 16);
                prefix = String.format("%s/%s", className, safeMethodName);
            }
        }
    
        /*
         Shorten a long name to at most {expectedMaxLength}, replace middle characters with ".".
         */
        private String shortenPath(String longName, int expectedMaxLength) {
            if (longName.length() <= expectedMaxLength) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		// can resume performing those duties. If it wakes from a syscall it
    		// resets idle and delay as a bet that since it had retaken a P from a
    		// syscall before, it may need to do it again shortly after the
    		// application starts work again. It does not reset idle when waking
    		// from a timer to avoid adding system load to applications that spend
    		// most of their time sleeping.
    		now := nanotime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/AbstractCompiler.java

            Action<List<String>> userArgTransformer = invocationContext.getArgAction();
            // modifies in place
            userArgTransformer.execute(args);
    
            if (useCommandFile) {
                // Shorten args and write out an options.txt file
                // This must be called only once per execute()
                addOptionsFileArgs(args, spec.getTempDir());
            }
            return args;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/crypto/aes/ctr_s390x.go

    var _ ctrAble = (*aesCipherAsm)(nil)
    
    // xorBytes xors the contents of a and b and places the resulting values into
    // dst. If a and b are not the same length then the number of bytes processed
    // will be equal to the length of shorter of the two. Returns the number
    // of bytes processed.
    //
    //go:noescape
    func xorBytes(dst, a, b []byte) int
    
    // streamBufferSize is the number of bytes of encrypted counter values to cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/internal/bytealg/count_arm64.s

    	VUADDLV	V6.B16, V7
    	// Accumulate the count in low 64-bit element of V8 when inside the loop
    	VADD	V7, V8
    	BNE	chunk_loop
    	VMOV	V8.D[0], R6
    	ADD	R6, R11, R11
    	CBZ	R2, done
    tail:
    	// Work with tail shorter than 32 bytes
    	MOVBU.P	1(R0), R5
    	SUB	$1, R2, R2
    	CMP	R5, R1
    	CINC	EQ, R11, R11
    	CBNZ	R2, tail
    done:
    	MOVD	R11, (R8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 17:00:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. gradlew.bat

    if "%OS%"=="Windows_NT" setlocal
    
    set DIRNAME=%~dp0
    if "%DIRNAME%"=="" set DIRNAME=.
    @rem This is normally unused
    set APP_BASE_NAME=%~n0
    set APP_HOME=%DIRNAME%
    
    @rem Resolve any "." and ".." in APP_HOME to make it shorter.
    for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
    
    @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
    set DEFAULT_JVM_OPTS=-Dfile.encoding=UTF-8 "-Xmx64m" "-Xms64m"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:31:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

            }
    
            public String getLabel() {
                return formatHash(hash);
            }
    
            private String formatHash(String hash) {
                return shorten(hash, 7);
            }
    
            public void renderCompareLink(Html html, String previousHash) {
                String range = String.format("%s...%s", formatHash(previousHash), formatHash(hash));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/windowsStartScript.txt

    set DIRNAME=%~dp0
    if "%DIRNAME%"=="" set DIRNAME=.\
    
    @rem This is normally unused
    set APP_BASE_NAME=%~n0
    set APP_HOME=%DIRNAME%${appHomeRelativePath}
    
    @rem Resolve any "." and ".." in APP_HOME to make it shorter.
    for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
    
    @rem Add default JVM options here. You can also use JAVA_OPTS and ${optsEnvironmentVar} to pass JVM options to this script.
    set DEFAULT_JVM_OPTS=${defaultJvmOpts}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 13:16:41 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo_test.go

    			t.Fatalf("could not write to tempfile: %v", err)
    		}
    
    		if err := file.Close(); err != nil {
    			t.Fatalf("could not close tempfile: %v", err)
    		}
    
    		// Override the default timeouts to be shorter
    		defaultTimeouts := kubeadmapi.GetActiveTimeouts()
    		defaultAPICallTimeout := defaultTimeouts.KubernetesAPICall
    		defaultTimeouts.KubernetesAPICall = &metav1.Duration{Duration: time.Microsecond * 500}
    		defer func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top