Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for dumpling (0.78 sec)

  1. src/runtime/runtime2.go

    	waitReasonChanReceiveNilChan                      // "chan receive (nil chan)"
    	waitReasonChanSendNilChan                         // "chan send (nil chan)"
    	waitReasonDumpingHeap                             // "dumping heap"
    	waitReasonGarbageCollection                       // "garbage collection"
    	waitReasonGarbageCollectionScan                   // "garbage collection scan"
    	waitReasonPanicWait                               // "panicwait"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_test.go

    					CustomTags: map[string]*tpb.Tracing_CustomTag{
    						"foo": {},
    						"bar": {},
    					},
    					UseRequestIDForTraceSampling: false,
    				},
    			},
    		},
    		{
    			"overrides with default sampling",
    			[]config.Config{newTelemetry("istio-system", overridesWithDefaultSampling)},
    			sidecar,
    			[]string{"envoy"},
    			&TracingConfig{
    				ClientSpec: TracingSpec{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. pkg/controller/daemon/update.go

    		if updateErr != nil {
    			return nil, updateErr
    		}
    		logger.V(2).Info("Found a hash collision for DaemonSet - bumping collisionCount to resolve it", "daemonset", klog.KObj(ds), "collisionCount", *currDS.Status.CollisionCount)
    		return nil, outerErr
    	}
    	return history, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    	// Newer versions cannot be read by older software.
    	// This will prevent downgrades to incompatible versions.
    	xlVersionMajor = 1
    
    	// Non breaking changes.
    	// Bumping this is informational, but should be done
    	// if any change is made to the data stored, bumping this
    	// will allow to detect the exact version later.
    	xlVersionMinor = 3
    )
    
    func init() {
    	binary.LittleEndian.PutUint16(xlVersionCurrent[0:2], xlVersionMajor)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. cmd/utils.go

    				return nil, err
    			}
    			defer RemoveAll(dirPath)
    			return ioutilx.ReadFile(fn)
    		}
    	case madmin.ProfilerCPUIO:
    		// at 10k or more goroutines fgprof is likely to become
    		// unable to maintain its sampling rate and to significantly
    		// degrade the performance of your application
    		// https://github.com/felixge/fgprof#fgprof
    		if n := runtime.NumGoroutine(); n > 10000 && !globalIsCICD {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/debug.go

    		secretsAny,
    		extensionsAny,
    	)
    	configDump := &admin.ConfigDump{
    		Configs: configs,
    	}
    	return configDump, nil
    }
    
    // injectTemplateHandler dumps the injection template
    // Replaces dumping the template at startup.
    func (s *DiscoveryServer) injectTemplateHandler(webhook func() map[string]string) func(http.ResponseWriter, *http.Request) {
    	return func(w http.ResponseWriter, req *http.Request) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    				"-m", "comment", "--comment", fmt.Sprintf(`"other traffic to %s will be dropped by KUBE-PROXY-FIREWALL"`, svcPortNameString),
    			)
    		}
    
    		// If Cluster policy is in use, create the chain and create rules jumping
    		// from clusterPolicyChain to the clusterEndpoints
    		if usesClusterPolicyChain {
    			natChains.Write(utiliptables.MakeChainLine(clusterPolicyChain))
    			activeNATChains.Insert(clusterPolicyChain)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Ordering.java

        if (iterable instanceof Collection) {
          Collection<E> collection = (Collection<E>) iterable;
          if (collection.size() <= 2L * k) {
            // In this case, just dumping the collection to an array and sorting is
            // faster than using the implementation for Iterator, which is
            // specialized for k much smaller than n.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    		// We expect the test binary to terminate itself (and dump stacks) after
    		// exactly testTimeout. We give it up to one WaitDelay or one minute,
    		// whichever is longer, to finish dumping stacks before we send it an
    		// external signal: if the process has a lot of goroutines, dumping stacks
    		// after the timeout can take a while.
    		//
    		// After the signal is delivered, the test process may have up to one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Ordering.java

        if (iterable instanceof Collection) {
          Collection<E> collection = (Collection<E>) iterable;
          if (collection.size() <= 2L * k) {
            // In this case, just dumping the collection to an array and sorting is
            // faster than using the implementation for Iterator, which is
            // specialized for k much smaller than n.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top