Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,361 for too (0.02 sec)

  1. internal/config/crypto.go

    		KMSKey:    key.Ciphertext,
    		Algorithm: algorithm,
    		Nonce:     nonce,
    	})
    	if err != nil {
    		return nil, err
    	}
    	if len(metadata) > MaxMetadataSize {
    		return nil, errors.New("config: encryption metadata is too large")
    	}
    	header[0] = Version
    	binary.LittleEndian.PutUint32(header[1:], uint32(len(metadata)))
    	buffer.Write(header[:])
    	buffer.Write(metadata)
    
    	return io.MultiReader(
    		&buffer,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/counter/parse.go

    	Count map[string]uint64
    }
    
    func Parse(filename string, data []byte) (*File, error) {
    	if !bytes.HasPrefix(data, []byte(hdrPrefix)) || len(data) < pageSize {
    		if len(data) < pageSize {
    			return nil, fmt.Errorf("%s: file too short (%d<%d)", filename, len(data), pageSize)
    		}
    		return nil, fmt.Errorf("%s: wrong hdr (not %q)", filename, hdrPrefix)
    	}
    	corrupt := func() (*File, error) {
    		// TODO(rfindley): return a useful error message.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 14:38:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/typeinst0.go

    // TODO(gri) better error messages
    type _ T1[] // ERROR "expected type argument list"
    type _ T1[x /* ERROR "not a type" */ ]
    type _ T1 /* ERROR "too many type arguments for type T1: have 2, want 1" */ [int, float32]
    
    var _ T2[int] = T2[int]{}
    
    var _ List[int] = []int{1, 2, 3}
    var _ List[[]int] = [][]int{{1, 2, 3}}
    var _ List[List[List[int]]]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/SummarizingChangeContainer.java

     */
    
    package org.gradle.internal.execution.history.changes;
    
    import com.google.common.collect.ImmutableList;
    
    import java.util.List;
    
    /**
     * Provides an efficient summary of the changes, without doing too much unnecessary work.
     * - Will only emit changes of a single type (from a single delegate change set)
     */
    public class SummarizingChangeContainer implements ChangeContainer {
        private final List<ChangeContainer> sources;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoTestRelocationIntegrationTest.groovy

            println String.format("Levenshtein distance if %s (%.2f%% difference)", distance, 100d * distance / length)
            // We are okay with 2% distance
            if (distance > length * 0.02) {
                // If we had too big a difference we fall back to Groovy reporting it
                def originalAsHex = toHexStrings(originalBytes)
                def movedAsHex = toHexStrings(movedBytes)
                assert movedAsHex == originalAsHex
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/diagnostics/DaemonLogFileUtilsTest.groovy

                line1
                line2
                line3
            """)
    
            expect:
            DaemonLogFileUtils.tail(logFile, 2) == "line2\nline3"
        }
    
        def "returns all output if the log is too short"() {
            given:
            def logFile = log("""\
                line1
                line2
                line3
            """)
    
            expect:
            DaemonLogFileUtils.tail(logFile, 10) == "line1\nline2\nline3"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/net/http/httputil/httputil.go

    // length, both of which are wrong.
    func NewChunkedWriter(w io.Writer) io.WriteCloser {
    	return internal.NewChunkedWriter(w)
    }
    
    // ErrLineTooLong is returned when reading malformed chunked data
    // with lines that are too long.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/util/cmdutil.go

    	validArgs := 0
    	// Disregard possible "" arguments; they are invalid
    	for _, arg := range args {
    		if len(arg) > 0 {
    			validArgs++
    		}
    		// break early for too many arguments
    		if validArgs > lenSupported {
    			return errors.Errorf("too many arguments. Required arguments: %v", supportedArgs)
    		}
    	}
    
    	if validArgs < lenSupported {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_illumos.go

    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    	nfd, err = accept4(fd, &rsa, &len, flags)
    	if err != nil {
    		return
    	}
    	if len > SizeofSockaddrAny {
    		panic("RawSockaddrAny too small")
    	}
    	sa, err = anyToSockaddr(fd, &rsa)
    	if err != nil {
    		Close(nfd)
    		nfd = 0
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/multi_variables_v1.py

    # limitations under the License.
    # ==============================================================================
    
    # RUN: %p/multi_variables_v1 | FileCheck %s
    
    # pylint: disable=missing-docstring,line-too-long
    import tensorflow.compat.v1 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common_v1
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top