Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 146 for Booleans (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    }
    
    // TableRow is an individual row in a table.
    // +protobuf=false
    type TableRow struct {
    	// cells will be as wide as the column definitions array and may contain strings, numbers (float64 or
    	// int64), booleans, simple maps, lists, or null. See the type field of the column definition for a
    	// more detailed description.
    	// +listType=atomic
    	Cells []interface{} `json:"cells"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssa/_gen/ARM.rules

    	(XOR <t>
    		(SRLconst <t> (BICconst <t> (XOR <t> x (SRRconst <t> [16] x)) [0xff0000]) [8])
    		(SRRconst <t> x [8]))
    
    // byte swap for ARMv6 and above
    (Bswap32 x) && buildcfg.GOARM.Version>=6 => (REV x)
    
    // boolean ops -- booleans are represented with 0=false, 1=true
    (AndB ...) => (AND ...)
    (OrB ...) => (OR ...)
    (EqB x y) => (XORconst [1] (XOR <typ.Bool> x y))
    (NeqB ...) => (XOR ...)
    (Not x) => (XORconst [1] x)
    
    // shifts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

      /**
       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
       * @param expression a boolean expression
       * @throws IllegalArgumentException if {@code expression} is false
       */
      public static void checkArgument(boolean expression) {
        if (!expression) {
          throw new IllegalArgumentException();
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Preconditions.java

      /**
       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
       * @param expression a boolean expression
       * @throws IllegalArgumentException if {@code expression} is false
       */
      public static void checkArgument(boolean expression) {
        if (!expression) {
          throw new IllegalArgumentException();
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

      @ArgumentsSource(FileSystemParamProvider::class)
      fun emptyCache(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        cache.close()
        assertJournalEquals()
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun recoverFromInitializationFailure(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                    // Prefer a real method over synthetic
                    mainGetter = metadata;
                } else if (mainGetter.getReturnType().equals(Boolean.TYPE) && !metadata.getReturnType().equals(Boolean.TYPE)) {
                    // Prefer non-boolean over boolean
                    mainGetter = metadata;
                } else if (mainGetter.getReturnType().isAssignableFrom(metadata.getReturnType())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  7. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    public boolean getAllowsArguments(); public boolean getAllowsMultipleArg(); public CommandLineOption deprecated(); public CommandLineOption incubating(); public boolean isDeprecated(); public boolean isIncubating(); java.util.Set getGroupWith(); void groupWith(java.util.Set); } org/gradle/cli/CommandLineParser$1.class package org.gradle.cli; synchronized class CommandLineParser$1 { } org/gradle/cli/CommandLineParser$AfterFirstSubCommand.class package org.gradle.cli; synchronized class CommandLinePars...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  8. .teamcity/.mvn/wrapper/maven-wrapper.jar

    ALWAYS_DOWNLOAD_ENV = MAVEN_WRAPPER_ALWAYS_DOWNLOAD; private boolean alwaysUnpack; private boolean alwaysDownload; private java.net.URI distribution; private String distributionBase; private String distributionPath; private String zipBase; private String zipPath; public void WrapperConfiguration(); public boolean isAlwaysDownload(); public void setAlwaysDownload(boolean); public boolean isAlwaysUnpack(); public void setAlwaysUnpack(boolean); public java.net.URI getDistribution(); public void setDi...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        private boolean useOnlyRequestedJvmOpts;
        private boolean useOwnUserHomeServices;
        private ConsoleOutput consoleType;
        protected WarningMode warningMode = WarningMode.All;
        private boolean showStacktrace = false;
        private boolean renderWelcomeMessage;
        private boolean disableToolchainDownload = true;
        private boolean disableToolchainDetection = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            }
        }
    
        default boolean getSystemPropertyAsBoolean(final String key, final boolean defaultValue) {
            return Constants.TRUE.equalsIgnoreCase(getSystemProperty(key, defaultValue ? Constants.TRUE : Constants.FALSE));
        }
    
        default void setSystemPropertyAsBoolean(final String key, final boolean value) {
            setSystemProperty(key, value ? Constants.TRUE : Constants.FALSE);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top