Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 109 of 109 for Maximum (0.16 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    GTEST_DECLARE_bool_(show_internal_stack_frames);
    
    // When this flag is specified, tests' order is randomized on every iteration.
    GTEST_DECLARE_bool_(shuffle);
    
    // This flag specifies the maximum number of stack frames to be
    // printed in a failure message.
    GTEST_DECLARE_int32_(stack_trace_depth);
    
    // When this flag is specified, a failed assertion will throw an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.3.md

    * Display line number on JSON errors ([#25038](https://github.com/kubernetes/kubernetes/pull/25038), [@mfojtik](https://github.com/mfojtik))
    * If the cluster node count exceeds the GCE TargetPool maximum (currently 1000), ([#25178](https://github.com/kubernetes/kubernetes/pull/25178), [@zmerlynn](https://github.com/zmerlynn))
        * randomly select which nodes are members of Kubernetes External Load Balancers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// This limits the duration of the call, regardless of any activity or inactivity.
    	// +optional
    	TimeoutSeconds *int64 `json:"timeoutSeconds,omitempty" protobuf:"varint,5,opt,name=timeoutSeconds"`
    
    	// limit is a maximum number of responses to return for a list call. If more items exist, the
    	// server will set the `continue` field on the list metadata to a value that can be used with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  4. pkg/kubelet/pod_workers.go

    			// accept a context for shutdown
    			defer runtime.HandleCrash()
    			defer klog.V(3).InfoS("Pod worker has stopped", "podUID", uid)
    			p.podWorkerLoop(uid, outCh)
    		}()
    	}
    
    	// measure the maximum latency between a call to UpdatePod and when the pod worker reacts to it
    	// by preserving the oldest StartTime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0" />
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <style type="text/css">
    
    @media only screen and (max-width: 420px) {
    a[class="article-headline"] {
    font-size:22px !important;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //     tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
    //     of elements from sequences produces by gen1, gen2, ..., genN.
    //
    // Combine can have up to 10 arguments. This number is currently limited
    // by the maximum number of elements in the tuple implementation used by Google
    // Test.
    //
    // Example:
    //
    // This will instantiate tests in test case AnimalTest each one with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    	uses              *use    // list of uses in this block
    	spill             *Value  // spilled copy of the Value (if any)
    	restoreMin        int32   // minimum of all restores' blocks' sdom.entry
    	restoreMax        int32   // maximum of all restores' blocks' sdom.exit
    	needReg           bool    // cached value of !v.Type.IsMemory() && !v.Type.IsVoid() && !.v.Type.IsFlags()
    	rematerializeable bool    // cached value of v.rematerializeable()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    // corresponding to the undefined symbols themselves, the second list
    // is the symbol that is making a reference to the undef. The "limit"
    // param controls the maximum number of results returned; if "limit"
    // is -1, then all undefs are returned.
    func (l *Loader) UndefinedRelocTargets(limit int) ([]Sym, []Sym) {
    	result, fromr := []Sym{}, []Sym{}
    outerloop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportImpl.java

            int msgSize = nextCommand != 0 ? nextCommand : size;
            if ( msgSize > maximumBufferSize ) {
                throw new IOException(String.format("Message size %d exceeds maxiumum buffer size %d", msgSize, maximumBufferSize));
            }
    
            ServerMessageBlock2Response cur = (ServerMessageBlock2Response) response;
            byte[] buffer = getContext().getBufferCache().getBuffer();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top