Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,621 for Booleans (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go

    	}{
    		// Invalid syntaxes
    		{
    			In:  `x`,
    			Err: true,
    		},
    		{
    			In:  ``,
    			Err: true,
    		},
    
    		// Null
    		{
    			In:   `null`,
    			Data: nil,
    			Out:  `null`,
    		},
    		// Booleans
    		{
    			In:   `true`,
    			Data: true,
    			Out:  `true`,
    		},
    		{
    			In:   `false`,
    			Data: false,
    			Out:  `false`,
    		},
    
    		// Integers
    		{
    			In:   `0`,
    			Data: int64(0),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. src/database/sql/driver/types.go

    	// Value returns a driver Value.
    	// Value must not panic.
    	Value() (Value, error)
    }
    
    // Bool is a [ValueConverter] that converts input values to bool.
    //
    // The conversion rules are:
    //   - booleans are returned unchanged
    //   - for integer types,
    //     1 is true
    //     0 is false,
    //     other integers are an error
    //   - for strings and []byte, same rules as [strconv.ParseBool]
    //   - all other types are an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. test/cmp.go

    		istrue(z != iy)
    		isfalse(x != iz)
    		isfalse(z != ix)
    
    		istrue(ix != y)
    		istrue(iy != x)
    		istrue(iy != z)
    		istrue(iz != y)
    		isfalse(ix != z)
    		isfalse(iz != x)
    	}
    
    	// named booleans
    	{
    		type mybool bool
    		var b mybool
    
    		type T struct{ data [20]byte }
    		var x, y T
    		b = x == y
    		istrue(x == y)
    		istrue(bool(b))
    
    		m := make(map[string][10]interface{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 26 03:38:21 UTC 2015
    - 7.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/boolean-attributes.module

    Tom Tresansky <******@****.***> 1696954098 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 260 bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/spec/AbstractConfigurationReportSpec.java

        public abstract boolean isIncludeVariants();
        public abstract boolean isIncludeRuleSchema();
        public abstract boolean isIncludeExtensions();
        public abstract boolean isIncludeExtensionsRecursively();
    
        public Optional<String> getSearchTarget() {
            return Optional.ofNullable(searchTarget);
        }
        public boolean isSearchForSpecificVariant() {
            return null != searchTarget;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/LocalComponentDependencyMetadata.java

        private final List<ExcludeMetadata> excludes;
        private final List<IvyArtifactName> artifactNames;
        private final boolean force;
        private final boolean changing;
        private final boolean transitive;
        private final boolean constraint;
        private final boolean endorsing;
        private final boolean fromLock;
        private final String reason;
    
        public LocalComponentDependencyMetadata(
            ComponentSelector selector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

    public class MinimalScalaCompileOptions implements Serializable {
        private boolean failOnError = true;
        private boolean deprecation = true;
        private boolean unchecked = true;
        private String debugLevel;
        private boolean optimize;
        private String encoding;
        private boolean force;
        private List<String> additionalParameters;
        private boolean listFiles;
        private String loggingLevel;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/StartParameterInternal.java

        private boolean configurationCacheDebug;
        private boolean configurationCacheIgnoreInputsInTaskGraphSerialization = false;
        private int configurationCacheMaxProblems = 512;
        private @Nullable String configurationCacheIgnoredFileSystemCheckInputs = null;
        private boolean configurationCacheRecreateCache;
        private boolean configurationCacheQuiet;
        private boolean searchUpwards = true;
        private boolean useEmptySettings = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:08:36 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildModelParameters.java

        public BuildModelParameters(
            boolean parallelProjectExecution,
            boolean configureOnDemand,
            boolean configurationCache,
            boolean isolatedProjects,
            boolean requiresBuildModel,
            boolean intermediateModelCache,
            boolean parallelToolingApiActions,
            boolean invalidateCoupledProjects,
            boolean modelAsProjectDependency,
            LogLevel configurationCacheLogLevel
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

        @Nonnull
        Session getSession();
    
        @Nonnull
        Optional<Path> getPath();
    
        @Nonnull
        Optional<Source> getSource();
    
        boolean isAllowStubModel();
    
        boolean isRecursive();
    
        boolean isProcessPlugins();
    
        @Nonnull
        static ProjectBuilderRequest build(@Nonnull Session session, @Nonnull Source source) {
            return builder()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top