Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 222 for elsif (0.21 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftCompilerDetectingApp.groovy

            return sourceFile('swift', 'main.swift', """
                #if swift(>=5.0)
                    print("Compiled using Swift 5.x compiler")
                #elseif swift(>=4.0)
                    print("Compiled using Swift 4.x compiler")
                #elseif swift(>=3.0)
                    print("Compiled using Swift 3.x compiler")
                #else
                    print("Compiled using unknown compiler")
                #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)
  2. src/mdo/merger.vm

                builder.location("${field.name}", source.getLocation("${field.name}"));
            #end
            }
          #elseif ( $field.type == "java.util.List" && $field.to == "String" && $field.multiplicity == "*" )
            builder.${field.name}(merge(target.get${capField}(), source.get${capField}(), sourceDominant, e -> e));
          #elseif ( $field.type == "java.util.Properties" && $field.to == "String" && $field.multiplicity == "*" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. tools/go-compile-verbose

          base="${f/"$GMODCACHE"\//}"
          mod="$(<<< "$base" cut -d@ -f1)"
          rest="$(<<< "$base" cut -d@ -f2 | cut -d/ -f2-)"
          log "${ls}\t${mod}\t${rest}"
        elif [[ "$f" =~ "$GROOT" ]]; then
            base="${f/"$GROOT"\//}"
            log "${ls}\tstd\t${base}"
        elif [[ "$f" =~ "$ROOT" ]]; then
            base="${f/"$ROOT"\//}"
            log "${ls}\tlocal\t${base}"
        else
            log "${ls}\tunknown\t${f}"
        fi
        ;;
      vet)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/mdo/writer-stax.vm

            #end
          #elseif ( $field.type == "int" )
                writeTag("$fieldTagName", "${def}", Integer.toString(${classLcapName}.get${fieldCapName}()), serializer${loctrac});
          #elseif ( $field.type == "DOM" )
                writeDom(${classLcapName}.get${fieldCapName}(), serializer);
          #elseif ( $field.type == "java.util.List" && $field.to == "String" && $field.multiplicity == "*" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  5. src/mdo/reader-stax.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: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  6. src/packaging/common/scripts/prerm

    # Stops the service
    if [ "$STOP_REQUIRED" = "true" ]; then
        echo -n "Stopping fess service..."
        if command -v systemctl >/dev/null; then
            systemctl --no-reload stop fess.service > /dev/null 2>&1 || true
    
        elif [ -x /etc/init.d/fess ]; then
            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
            else
                /etc/init.d/fess stop || true
            fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  7. helm/minio/templates/_helper_create_bucket.txt

    			if [ $OBJECTLOCKING = true ]; then
    				echo "Creating bucket with OBJECTLOCKING '$BUCKET'"
    				${MC} mb --with-lock myminio/$BUCKET
    			elif [ $OBJECTLOCKING = false ]; then
    				echo "Creating bucket '$BUCKET'"
    				${MC} mb myminio/$BUCKET
    			fi
    		elif [ -z $OBJECTLOCKING ]; then
    			echo "Creating bucket '$BUCKET'"
    			${MC} mb myminio/$BUCKET
    		else
    			echo "Bucket '$BUCKET' already exists."
    		fi
    	fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jan 12 18:18:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. cluster/addons/addon-manager/kube-addons-test.sh

      create_resource_from_string "${limitrange}" "10" "1" "limitrange.yaml" "${TEST_NS}"
      if ! (kubectl get limits/limits -n "${TEST_NS}"); then
        error "failed to create limits w/ reconcile"
        return 1
      elif ! (kubectl get limits/limits -n ${TEST_NS} -o yaml | grep --silent "100m"); then
        error "limits does not match applied config"
        return 1
      fi
    
      # Changes to addons with mode reconcile should be reflected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 02:46:18 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

              ones = array_ops.ones_like(out)
              out = array_ops.concat([out, ones], 0)
            elif self.same_scale_op == 'gather':
              out = array_ops.gather(out, indices=[0], axis=0)
            elif self.same_scale_op == 'max_pool':
              out = nn_ops.max_pool(out, ksize=3, strides=1, padding='SAME')
            elif self.same_scale_op == 'pad':
              paddings = array_ops.ones(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top