Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 633 for shortly (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/WellKnownClassLoaderRegistry.java

            final SerializeMap delegateSession = delegate.newSerializeSession();
            return new SerializeMap() {
                final Map<Short, ClassLoaderDetails> knownLoaders = new HashMap<>();
    
                @Override
                public short visitClass(Class<?> target) {
                    ClassLoader classLoader = target.getClassLoader();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/PrimitiveTypesTest.groovy

            Byte      | _
            Short     | _
            Integer   | _
            Float     | _
            Long      | _
            Double    | _
        }
    
        def "#type is primitive"() {
            expect:
            PrimitiveTypes.isPrimitiveType(ModelType.of(type))
    
            where:
            type    | _
            boolean | _
            char    | _
            byte    | _
            short   | _
            int     | _
            float   | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    		sc.writeSched = http2newRoundRobinWriteScheduler()
    	}
    
    	// These start at the RFC-specified defaults. If there is a higher
    	// configured value for inflow, that will be updated when we send a
    	// WINDOW_UPDATE shortly after sending SETTINGS.
    	sc.flow.add(http2initialWindowSize)
    	sc.inflow.init(http2initialWindowSize)
    	sc.hpackEncoder = hpack.NewEncoder(&sc.headerWriteBuf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java

      }
    
      /**
       * Wrapper for {@link Map#get(Object)} that forces the caller to pass in a key of the same type as
       * the map. Besides being slightly shorter than code that uses {@link #getMap()}, it also ensures
       * that callers don't pass an {@link Entry} by mistake.
       */
      protected V get(K key) {
        return getMap().get(key);
      }
    
      protected final K k0() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/crypto/elliptic/params.go

    // (x2, y2, z2) and returns their sum, also in Jacobian form.
    func (curve *CurveParams) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.Int) {
    	// See https://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#addition-add-2007-bl
    	x3, y3, z3 := new(big.Int), new(big.Int), new(big.Int)
    	if z1.Sign() == 0 {
    		x3.Set(x2)
    		y3.Set(y2)
    		z3.Set(z2)
    		return x3, y3, z3
    	}
    	if z2.Sign() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/net/http/servemux121.go

    	})
    	if i == n {
    		return append(es, e)
    	}
    	// we now know that i points at where we want to insert
    	es = append(es, muxEntry{}) // try to grow the slice in place, any entry works.
    	copy(es[i+1:], es[i:])      // Move shorter entries down
    	es[i] = e
    	return es
    }
    
    // Formerly ServeMux.HandleFunc.
    func (mux *serveMux121) handleFunc(pattern string, handler func(ResponseWriter, *Request)) {
    	if handler == nil {
    		panic("http: nil handler")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top