Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for CTYPE (0.04 sec)

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

    //   BoolFromGTestEnv()   - parses a bool environment variable.
    //   Int32FromGTestEnv()  - parses an Int32 environment variable.
    //   StringFromGTestEnv() - parses a string environment variable.
    
    #include <ctype.h>   // for isspace, etc
    #include <stddef.h>  // for ptrdiff_t
    #include <stdlib.h>
    #include <stdio.h>
    #include <string.h>
    #ifndef _WIN32_WCE
    # include <sys/types.h>
    # include <sys/stat.h>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   BoolFromGTestEnv()   - parses a bool environment variable.
    //   Int32FromGTestEnv()  - parses an Int32 environment variable.
    //   StringFromGTestEnv() - parses a string environment variable.
    
    #include <ctype.h>   // for isspace, etc
    #include <stddef.h>  // for ptrdiff_t
    #include <stdlib.h>
    #include <stdio.h>
    #include <string.h>
    #ifndef _WIN32_WCE
    # include <sys/types.h>
    # include <sys/stat.h>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			UID: types.UID(rand.String(5)),
    		},
    	}}
    }
    
    func getConditionsByType(list []batch.JobCondition, cType batch.JobConditionType) []*batch.JobCondition {
    	var result []*batch.JobCondition
    	for i := range list {
    		if list[i].Type == cType {
    			result = append(result, &list[i])
    		}
    	}
    	return result
    }
    
    func (pb podBuilder) name(n string) podBuilder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    		rws.writeHeader(200)
    	}
    
    	if rws.handlerDone {
    		rws.promoteUndeclaredTrailers()
    	}
    
    	isHeadResp := rws.req.Method == "HEAD"
    	if !rws.sentHeader {
    		rws.sentHeader = true
    		var ctype, clen string
    		if clen = rws.snapHeader.Get("Content-Length"); clen != "" {
    			rws.snapHeader.Del("Content-Length")
    			if cl, err := strconv.ParseUint(clen, 10, 63); err == nil {
    				rws.sentContentLen = int64(cl)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top