Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,021 for shortly (0.23 sec)

  1. 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)
  2. 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)
  3. src/cmd/go/internal/web/url_windows_test.go

    		filePath: `C:\exampleã„“.txt`,
    	},
    
    	// Examples from RFC 8089:
    
    	// We allow the drive-letter variation from section E.2, because it is
    	// simpler to support than not to. However, we do not generate the shorter
    	// form in the reverse direction.
    	{
    		url:          `file:c:/path/to/file`,
    		filePath:     `c:\path\to\file`,
    		canonicalURL: `file:///c:/path/to/file`,
    	},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/testdata/addmod.go

    //
    //	go run addmod.go path@version...
    //
    // It should only be used for very small modules - we do not want to check
    // very large files into testdata/mod.
    //
    // It is acceptable to edit the archive afterward to remove or shorten files.
    // See mod/README for more information.
    package main
    
    import (
    	"bytes"
    	"cmd/go/internal/str"
    	"flag"
    	"fmt"
    	"internal/txtar"
    	"io/fs"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. src/crypto/x509/pkcs8_test.go

    //
    // Note that OpenSSL will truncate the private key if it can (i.e. it emits it
    // like an integer, even though it's an OCTET STRING field). Thus if you
    // regenerate this you may, randomly, find that it's a byte shorter than
    // expected and the Go test will fail to recreate it exactly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 16:45:10 UTC 2022
    - 9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes.go

    func (t *gcm) TransformFromStorage(ctx context.Context, data []byte, dataCtx value.Context) ([]byte, bool, error) {
    	nonceSize := t.aead.NonceSize()
    	if len(data) < nonceSize {
    		return nil, false, errors.New("the stored data was shorter than the required size")
    	}
    	result, err := t.aead.Open(nil, data[:nonceSize], data[nonceSize:], dataCtx.AuthenticatedData())
    	return result, false, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      // fully qualified) or a short form with a single type (in which case the data
      // inputs and the output are all using this type).
      if (FunctionType type = mlir::dyn_cast<FunctionType>(types.front())) {
        result.types.assign(type.getResults().begin(), type.getResults().end());
        types.assign(type.getInputs().begin(), type.getInputs().end());
      } else {
        // In case of the short form, use the parsed type for both the operands and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/ProgressStartEventSerializer.java

        private static final short PARENT_PROGRESS_ID = 1;
        private static final short LOGGING_HEADER = 1 << 2;
        private static final short LOGGING_HEADER_IS_SUB_DESCRIPTION = 1 << 3;
        private static final short STATUS = 1 << 4;
        private static final short STATUS_IS_SUB_DESCRIPTION = 1 << 5;
        private static final short BUILD_OPERATION_ID = 1 << 6;
        private static final short BUILD_OPERATION_ID_IS_PROGRESS_ID = 1 << 7;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/CompactHashing.java

        } else if (buckets <= SHORT_MAX_SIZE) {
          return new short[buckets];
        } else {
          return new int[buckets];
        }
      }
    
      static void tableClear(Object table) {
        if (table instanceof byte[]) {
          Arrays.fill((byte[]) table, (byte) 0);
        } else if (table instanceof short[]) {
          Arrays.fill((short[]) table, (short) 0);
        } else {
          Arrays.fill((int[]) table, 0);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
Back to top