Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 222 for elsif (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

    #  endif
    # endif
    #elif defined __linux__
    # define GTEST_OS_LINUX 1
    # if defined __ANDROID__
    #  define GTEST_OS_LINUX_ANDROID 1
    # endif
    #elif defined __MVS__
    # define GTEST_OS_ZOS 1
    #elif defined(__sun) && defined(__SVR4)
    # define GTEST_OS_SOLARIS 1
    #elif defined(_AIX)
    # define GTEST_OS_AIX 1
    #elif defined(__hpux)
    # define GTEST_OS_HPUX 1
    #elif defined __native_client__
    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. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3Test.groovy

                testCase("testCodeWasCompiledWithSwift3Compiler",
                    """#if swift(>=4.0)
                            XCTFail("Compilation unit compiled with Swift 4+ instead of Swift 3.x");
                        #elseif swift(>=3.0)
                            // Do nothing
                        #else
                            XCTFail("Compilation unit compiled with Swift 2- instead of Swift 3.x");
                        #endif
                    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. pkg/volume/flexvolume/flexvolume_test.go

      echo -n '{
        "device": "{{.DevicePath}}",
        "status": "Success"
      }'
      exit 0
    elif [ "$1" == "detach" -a $# -eq 2 ]; then
      echo -n '{
        "status": "Success"
      }'
      exit 0
    elif [ "$1" == "getvolumename" -a $# -eq 4 ]; then
      echo -n '{
        "status": "Success",
        "volume": "fakevolume"
      }'
      exit 0
    elif [ "$1" == "isattached" -a $# -eq 2 ]; then
      echo -n '{
        "status": "Success",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. cluster/kubectl.sh

        } >&2
        exit 1
      fi
    elif [[ ! -x "${KUBECTL_PATH}" ]]; then
      {
        echo "KUBECTL_PATH environment variable set to '${KUBECTL_PATH}', but "
        echo "this doesn't seem to be a valid executable."
      } >&2
      exit 1
    fi
    kubectl="${KUBECTL_PATH:-${kubectl}}"
    
    if [[ "$KUBERNETES_PROVIDER" == "gke" ]]; then
      detect-project &> /dev/null
    elif [[ "$KUBERNETES_PROVIDER" == "ubuntu" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 06 18:03:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. src/mdo/reader.vm

                        break;
          #elseif ( $field.type == "boolean" || $field.type == "Boolean" )
                        ${classLcapName}.${field.name}(getBooleanValue(interpolatedTrimmed(nextText(parser, strict), "${fieldTagName}"), "${fieldTagName}", parser, ${field.defaultValue}));
                        break;
          #elseif ( $field.type == "int" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  6. src/syscall/types_linux.go

    #else
    	char sun_path[108];
    #endif
    };
    
    #ifdef __ARM_EABI__
    typedef struct user_regs PtraceRegs;
    #elif defined(__aarch64__)
    typedef struct user_pt_regs PtraceRegs;
    #elif defined(__powerpc64__)
    typedef struct pt_regs PtraceRegs;
    #elif defined(__mips__)
    typedef struct user PtraceRegs;
    #elif defined(__s390x__)
    typedef struct _user_regs_struct PtraceRegs;
    #else
    typedef struct user_regs_struct PtraceRegs;
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. src/mdo/model.vm

            #set ( $dummy = $imports.add( "java.util.List" ) )
            #set ( $dummy = $types.put( $field, "List<" + $field.to + ">" ) )
          #elseif ( $field.type == "java.util.Properties" )
            #set ( $dummy = $imports.add( "java.util.Map" ) )
            #set ( $dummy = $types.put( $field, "Map<String, String>" ) )
          #elseif ( $field.type == "DOM" )
            #set ( $dummy = $imports.add( "org.apache.maven.api.xml.XmlNode" ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift5Test.groovy

                testCase("testCodeWasCompiledWithSwift5Compiler",
                    """#if swift(>=6.0)
                            XCTFail("Compilation unit compiled with Swift 6+ instead of Swift 5.x");
                        #elseif swift(>=5.0)
                            // Do nothing
                        #else
                            XCTFail("Compilation unit compiled with Swift 4- instead of Swift 5.x");
                        #endif
                    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. docs/select/select.py

        },
        OutputSerialization={'CSV': {}},
    )
    
    for event in r['Payload']:
        if 'Records' in event:
            records = event['Records']['Payload'].decode('utf-8')
            print(records)
        elif 'Stats' in event:
            statsDetails = event['Stats']['Details']
            print("Stats details bytesScanned: ")
            print(statsDetails['BytesScanned'])
            print("Stats details bytesProcessed: ")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 18 00:11:39 UTC 2018
    - 1K bytes
    - Viewed (0)
  10. src/mdo/model-version.vm

                $pfx !${var}.get${Helper.capitalise($field.name)}().isEmpty() // ${class.name} : ${field.name}
                    #end
                #elseif ( $field.isOneMultiplicity() )
                $pfx is_${v}(${var}.get${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
                #elseif ( $field.type == "boolean" || $field.type == "Boolean" )
                $pfx has(${var}.is${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top