Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,072 for stricmp (0.11 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-strict.yaml

    John Howard <******@****.***> 1709232034 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-strict-workload.yaml

    John Howard <******@****.***> 1709232034 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - Viewed (0)
  3. test/nilptr2.go

    	{"&a10p[i]", func() { println(&a10p[i]) }},
    	{"*structp", func() { use(*structp) }},
    	{"&*structp", func() { println(&*structp) }},
    	{"structp.i", func() { println(structp.i) }},
    	{"&structp.i", func() { println(&structp.i) }},
    	{"structp.j", func() { println(structp.j) }},
    	{"&structp.j", func() { println(&structp.j) }},
    	{"structp.k", func() { println(structp.k) }},
    	{"&structp.k", func() { println(&structp.k) }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 03:02:33 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/sanitize.js

     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      // C runtime.
      static const char* Utf16ToAnsi(LPCWSTR utf16_str);
    #endif
    
      // Compares two C strings.  Returns true iff they have the same content.
      //
      // Unlike strcmp(), this function can handle NULL argument(s).  A
      // NULL C string is considered different to any non-NULL C string,
      // including the empty string.
      static bool CStringEquals(const char* lhs, const char* rhs);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. test/cmplxdivide.c

    };
    
    char* fmt(double g) {
    	static char buf[10][30];
    	static int n;
    	char *p;
    
    	p = buf[n++];
    	if(n == 10) {
    		n = 0;
    	}
    
    	sprintf(p, "%g", g);
    
    	if(strcmp(p, "0") == 0) {
    		strcpy(p, "zero");
    		return p;
    	}
    
    	if(strcmp(p, "-0") == 0) {
    		strcpy(p, "-zero");
    		return p;
    	}
    
    	return p;
    }
    
    int main(void) {
    	int i, j, k, l;
    	double complex n, d, q;
    
    	printf("// skip\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 22:45:17 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    		} else {
    			s = json.NewSerializerWithOptions(json.DefaultMetaFactory, test.creater, test.typer, json.SerializerOptions{Yaml: test.yaml, Pretty: test.pretty, Strict: test.strict})
    		}
    		obj, gvk, err := s.Decode([]byte(test.data), test.defaultGVK, test.into)
    
    		if !reflect.DeepEqual(test.expectedGVK, gvk) {
    			logTestCase(t, test)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. src/mdo/reader.vm

         * @param strict a strict object.
         * @throws XMLStreamException XMLStreamException if
         * any.
         * @throws IOException IOException if any.
         */
        private void checkUnknownElement(XMLStreamReader parser, boolean strict)
            throws XMLStreamException, IOException {
            if (strict) {
                throw new XMLStreamException("Unrecognised tag: '" + parser.getLocalName() + "'", parser.getLocation(), null);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -#ifndef _HAVE_STRING_ARCH_strncmp
    -# define strncmp(s1, s2, n)						      \
    -  (__extension__ (__builtin_constant_p (n)				      \
    -		  && ((__builtin_constant_p (s1)			      \
    -		       && strlen (s1) < ((size_t) (n)))			      \
    -		      || (__builtin_constant_p (s2)			      \
    -			  && strlen (s2) < ((size_t) (n))))		      \
    -		  ? strcmp (s1, s2) : strncmp (s1, s2, n)))
     #endif
     
     
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      // C runtime.
      static const char* Utf16ToAnsi(LPCWSTR utf16_str);
    #endif
    
      // Compares two C strings.  Returns true iff they have the same content.
      //
      // Unlike strcmp(), this function can handle NULL argument(s).  A
      // NULL C string is considered different to any non-NULL C string,
      // including the empty string.
      static bool CStringEquals(const char* lhs, const char* rhs);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top