Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 266 for maddld (0.33 sec)

  1. pkg/credentialprovider/config.go

    func decodeDockerConfigFieldAuth(field string) (username, password string, err error) {
    
    	var decoded []byte
    
    	// StdEncoding can only decode padded string
    	// RawStdEncoding can only decode unpadded string
    	if strings.HasSuffix(strings.TrimSpace(field), "=") {
    		// decode padded data
    		decoded, err = base64.StdEncoding.DecodeString(field)
    	} else {
    		// decode unpadded data
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

         * <p>
         * Allowing communication with untrusted servers keeps data encrypted during transmission,
         * but makes it easier for a man-in-the-middle to impersonate the intended server and capture data.
         * <p>
         * This value has no effect if a server is specified using the HTTP protocol (i.e. has SSL disabled).
         *
         * @since 4.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/util_test.go

    			input:        []int{1, 2, 3},
    			replace:      []int{10, 2, 3},
    			insertBefore: []int{10, 1, 2, 3},
    			insertAfter:  []int{1, 10, 2, 3},
    			applied:      true,
    		},
    		{
    			name:         "the middle",
    			input:        []int{0, 1, 2, 3},
    			replace:      []int{0, 10, 2, 3},
    			insertBefore: []int{0, 10, 1, 2, 3},
    			insertAfter:  []int{0, 1, 10, 2, 3},
    			applied:      true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/go/terminal_test.go

    	testenv.MustHaveGoBuild(t)
    
    	// Start with a "self test" to make sure that if we *don't* pass in a
    	// terminal, the test can correctly detect that. (cmd/go doesn't guarantee
    	// that it won't add a terminal in the middle, but that would be pretty weird.)
    	t.Run("pipe", func(t *testing.T) {
    		r, w, err := os.Pipe()
    		if err != nil {
    			t.Fatalf("pipe failed: %s", err)
    		}
    		defer r.Close()
    		defer w.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 18:18:50 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. src/strconv/ftoa.go

    		mi := ui - upper.dp + d.dp
    		if mi >= d.nd {
    			break
    		}
    		li := ui - upper.dp + lower.dp
    		l := byte('0') // lower digit
    		if li >= 0 && li < lower.nd {
    			l = lower.d[li]
    		}
    		m := byte('0') // middle digit
    		if mi >= 0 {
    			m = d.d[mi]
    		}
    		u := byte('0') // upper digit
    		if ui < upper.nd {
    			u = upper.d[ui]
    		}
    
    		// Okay to round down (truncate) if lower has a different digit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. pkg/kubelet/qos/policy.go

    	case v1.PodQOSGuaranteed:
    		// Guaranteed containers should be the last to get killed.
    		return guaranteedOOMScoreAdj
    	case v1.PodQOSBestEffort:
    		return besteffortOOMScoreAdj
    	}
    
    	// Burstable containers are a middle tier, between Guaranteed and Best-Effort. Ideally,
    	// we want to protect Burstable containers that consume less memory than requested.
    	// The formula below is a heuristic. A container requesting for 10% of a system's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReader.java

         * A value of -1 indicates that no character is in the buffer.
         */
        private int[] readAheadChars = new int[2];
    
        /**
         * Whether or not the parser is currently in the middle of a string literal.
         */
        private boolean inString;
    
        /**
         * Whether or not the last char has been a backslash.
         */
        private boolean quoted;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/go/ast/issues_test.go

    package p
    
    ... `, false},
    		// Special comment has rogue interior space.
    		{`//     Code generated by gen. DO NOT EDIT.
    package p
    `, false},
    		// Special comment lacks the middle portion.
    		{`// Code generated DO NOT EDIT.
    package p
    `, false},
    		// Special comment (incl. "//") appears within a /* block */ comment,
    		// an obscure corner case of the spec.
    		{`/* start of a general comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 13:57:33 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/sha3/doc.go

    // to "rate" bytes of the input are XORed into the sponge's state. The sponge
    // is then "full" and the permutation is applied to "empty" it. This process is
    // repeated until all the input has been "absorbed". The input is then padded.
    // The digest is "squeezed" from the sponge in the same way, except that output
    // is copied out instead of input being XORed in.
    //
    // A sponge is parameterized by its generic security strength, which is equal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/sizes_test.go

    import (
    	"unsafe"
    )
    
    // The Data struct size is expected to be rounded up to 16 bytes.
    type Data struct {
    	Value  uint32   // 4 bytes
    	Label  [10]byte // 10 bytes
    	Active bool     // 1 byte
    	// padded with 1 byte to make it align
    }
    
    func main() {
    	assert(unsafe.Sizeof(Data{}) == 16)
    }
    `,
    	},
    }
    
    func TestGCSizes(t *testing.T) {
    	types2.DefPredeclaredTestFuncs()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 21:00:48 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top