Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 600 for repeated (0.23 sec)

  1. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                - message: RequestHeaderModifier filter cannot be repeated
                                  rule: self.filter(f, f.type == 'RequestHeaderModifier').size()
                                    <= 1
                                - message: ResponseHeaderModifier filter cannot be repeated
                                  rule: self.filter(f, f.type == 'ResponseHeaderModifier').size()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    			if x&0x80 == 0 {
    				break
    			}
    		}
    		c *= n // now total number of bits to copy
    
    		// If the number of bits being repeated is small, load them
    		// into a register and use that register for the entire loop
    		// instead of repeatedly reading from memory.
    		// Handling fewer than 8 bits here makes the general loop simpler.
    		// The cutoff is goarch.PtrSize*8 - 7 to guarantee that when we add
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_tls.go

    			tlsContext.Sni = c.cluster.Name
    		}
    		// `istio-peer-exchange` alpn is only used when using mtls communication between peers.
    		// We add `istio-peer-exchange` to the list of alpn strings.
    		// The code has repeated snippets because We want to use predefined alpn strings for efficiency.
    		if cb.isHttp2Cluster(c) {
    			// This is HTTP/2 in-mesh cluster, advertise it with ALPN.
    			if features.MetadataExchange && !features.DisableMxALPN {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/embed/embed.go

    // (in the example above, content) to be populated with the matching files from the file system.
    //
    // The //go:embed directive accepts multiple space-separated patterns for
    // brevity, but it can also be repeated, to avoid very long lines when there are
    // many patterns. The patterns are interpreted relative to the package directory
    // containing the source file. The path separator is a forward slash, even on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. src/strings/strings.go

    	// we should panic if the repeat will generate an overflow.
    	// See golang.org/issue/16237.
    	if count < 0 {
    		panic("strings: negative Repeat count")
    	}
    	if len(s) > maxInt/count {
    		panic("strings: Repeat output length overflow")
    	}
    	n := len(s) * count
    
    	if len(s) == 0 {
    		return ""
    	}
    
    	// Optimize for commonly repeated strings of relatively short length.
    	switch s[0] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

          /*unfreeze_constants=*/!quantization_options.freeze_all_variables(),
          *function_aliases);
    }
    
    // TODO: b/297626257 - [Converter Component][TF-Quantizer] Clean up
    // quantize_model.cc by factoring out repeated codes
    absl::StatusOr<ExportedModel> QuantizeWeightOnly(
        absl::string_view saved_model_path,
        const QuantizationOptions &quantization_options) {
      std::unique_ptr<mlir::MLIRContext> context =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray_test.go

    	return true
    }
    
    var (
    	benchdata = make([]byte, 1e6)
    	benchrand = make([]byte, 1e6)
    )
    
    // Of all possible inputs, the random bytes have the least amount of substring
    // repetition, and the repeated bytes have the most. For most algorithms,
    // the running time of every input will be between these two.
    func benchmarkNew(b *testing.B, random bool) {
    	b.ReportAllocs()
    	b.StopTimer()
    	data := benchdata
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. schema/relationship.go

    		settings = ParseTagSetting(str, ",")
    	)
    
    	// optimize match english letters and midline
    	// The following code is basically called in for.
    	// In order to avoid the performance problems caused by repeated compilation of regular expressions,
    	// it only needs to be done once outside, so optimization is done here.
    	if idx != -1 && regEnLetterAndMidline.MatchString(str[0:idx]) {
    		name = str[0:idx]
    	} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/edit.go

    -retract=version is a no-op if that retraction already exists.
    
    The -godebug, -dropgodebug, -require, -droprequire, -exclude, -dropexclude,
    -replace, -dropreplace, -retract, and -dropretract editing flags may be
    repeated, and the changes are applied in the order given.
    
    The -print flag prints the final go.mod in its text format instead of
    writing it back to go.mod.
    
    The -json flag prints the final go.mod file in JSON format instead of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. pkg/volume/fc/fc.go

    	return b.SetUpAt(b.GetPath(), mounterArgs)
    }
    
    func (b *fcDiskMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	// diskSetUp checks mountpoints and prevent repeated calls
    	err := diskSetUp(b.manager, *b, dir, b.mounter, mounterArgs.FsGroup, mounterArgs.FSGroupChangePolicy)
    	if err != nil {
    		klog.Errorf("fc: failed to setup")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top