Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for maddld (0.69 sec)

  1. 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)
  2. 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)
  3. src/cmd/link/internal/ld/outbuf.go

    }
    
    // WriteStringN writes the first n bytes of s.
    // If n is larger than len(s) then it is padded with zero bytes.
    func (out *OutBuf) WriteStringN(s string, n int) {
    	out.WriteStringPad(s, n, zeros[:])
    }
    
    // WriteStringPad writes the first n bytes of s.
    // If n is larger than len(s) then it is padded with the bytes in pad (repeated as needed).
    func (out *OutBuf) WriteStringPad(s string, n int, pad []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs/en/docs/deployment/versions.md

    So, you should be able to pin to a version like:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Breaking changes and new features are added in "MINOR" versions.
    
    !!! tip
        The "MINOR" is the number in the middle, for example, in `0.2.3`, the MINOR version is `2`.
    
    ## Upgrading the FastAPI versions
    
    You should add tests for your app.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 05 20:50:37 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool_patterns.td

    // Replaces aten.avg_pool2d with ceil mode with (T -> tfl.pad -> tfl.average_pool_2d -> mul -> T). Multiplies by a constant
    // which corrects the overcounting of divisors that would occur if doing this computation on a padded tensor with ceil mode off.
    def LegalizeAvgPoolCeilModeTrue: Pat<
                        (MHLO_CompositeOp:$old_val
                        (variadic $a_input), 
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top