Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 139 for Thresholds (0.15 sec)

  1. src/cmd/link/link_test.go

    before their time—as the gas seems to know, for it has a haggard and unwilling look.  	The raw afternoon is rawest, and the dense fog is densest, and the muddy streets are muddiest near that leaden-headed old obstruction, appropriate ornament for the threshold of a leaden-headed old corporation, Temple Bar. And hard by Temple Bar, in Lincoln’s Inn Hall, at the very heart of the fog, sits the Lord High Chancellor in his High Court of Chancery."`
    
    	wind int `text:"It was grand to see how the wind...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    				}
    			}
    			return nil
    		},
    	}
    	cmd.PersistentFlags().BoolVar(&skipControlPlane, "skip-controlplane", false, "skip checking the control plane")
    	cmd.PersistentFlags().Var(&outputThreshold, "output-threshold",
    		fmt.Sprintf("The severity level of precheck at which to display messages. Valid values: %v", diag.GetAllLevelStrings()))
    	cmd.PersistentFlags().StringVarP(&msgOutputFormat, "output", "o", formatting.LogFormat,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    				// new endpoint. Always send new healthy endpoints.
    				// Also send new unhealthy endpoints when SendUnhealthyEndpoints is enabled.
    				// This is OK since we disable panic threshold when SendUnhealthyEndpoints is enabled.
    				if nie.HealthStatus != UnHealthy || features.SendUnhealthyEndpoints.Load() {
    					needPush = true
    				}
    				newIstioEndpoints = append(newIstioEndpoints, nie)
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf_test.go

    	// - when using the external linker, checking for read-only ".got"
    	//   is problematic since some linkers will only make the .got
    	//   read-only if its size is above a specific threshold, e.g.
    	//   https://sourceware.org/git/?p=binutils-gdb.git;a=blob;f=ld/scripttempl/elf.sc;h=d5022fa502f24db23f396f337a6c8978fbc8415b;hb=6fde04116b4b835fa9ec3b3497fcac4e4a0637e2#l74 . For this reason, don't try to verify read-only .got
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/log/slog/value.go

    // and returns the result.
    // If v resolves to a group, the group's attributes' values are not recursively
    // resolved.
    // If the number of LogValue calls exceeds a threshold, a Value containing an
    // error is returned.
    // Resolve's return value is guaranteed not to be of Kind [KindLogValuer].
    func (v Value) Resolve() (rv Value) {
    	orig := v
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    constexpr int kOpDetailCount = 8;
    
    void WarnOnExcessOutsideCompilationOps(ModuleOp module) {
      // Count the number of outside compilation ops. If it exceeds the reporting
      // threshold, warn the user that their model may run slowly.
      llvm::SmallVector<Operation*, 8> outside_compile_ops;
      module->walk([&](Operation* op) {
        if (op->getAttrOfType<StringAttr>(kXlaOutsideCompilationAttr)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. pkg/kubelet/pleg/generic.go

    	metrics.PLEGLastSeen.Set(float64(relistTime.Unix()))
    	elapsed := g.clock.Since(relistTime)
    	if elapsed > g.relistDuration.RelistThreshold {
    		return false, fmt.Errorf("pleg was last seen active %v ago; threshold is %v", elapsed, g.relistDuration.RelistThreshold)
    	}
    	return true, nil
    }
    
    func generateEvents(podID types.UID, cid string, oldState, newState plegContainerState) []*PodLifecycleEvent {
    	if newState == oldState {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. cmd/object-api-errors.go

    }
    
    // StorageFull storage ran out of space.
    type StorageFull struct{}
    
    func (e StorageFull) Error() string {
    	return "Storage reached its minimum free drive threshold."
    }
    
    // SlowDown  too many file descriptors open or backend busy .
    type SlowDown struct{}
    
    func (e SlowDown) Error() string {
    	return "Please reduce your request rate"
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. cmd/erasure-object_test.go

    			}
    		})
    	}
    }
    
    // Test PutObject twice, one small and another bigger
    // than small data threshold and checks reading them again
    func TestPutObjectSmallInlineData(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	const numberOfDisks = 4
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. src/math/big/natconv.go

    // is made better by splitting the subblocks recursively. Best is to split blocks until one more
    // split would take longer (because of the nat/nat div()) than the twice as many divW()'s of the
    // iterative approach. This threshold is represented by leafSize. Benchmarking of leafSize in the
    // range 2..64 shows that values of 8 and 16 work well, with a 4x speedup at medium lengths and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
Back to top