Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Booleans (0.14 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  0,
    		},
    		{
    			name:             "map of booleans with all",
    			schemaGenerator:  genMapWithRule("boolean", "self.all(x, true)"),
    			expectedCalcCost: 943718,
    			setMaxElements:   100,
    			expectedSetCost:  302,
    		},
    		{
    			name:             "map of booleans with has",
    			schemaGenerator:  genMapWithRule("boolean", "has(self.x)"),
    			expectedCalcCost: 0,
    			setMaxElements:   1024,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	{"and undef", "{{and 1 .Unknown}}", "<no value>", nil, true},
    	{"or undef", "{{or 0 .Unknown}}", "<no value>", nil, true},
    	{"boolean if", "{{if and true 1 `hi`}}TRUE{{else}}FALSE{{end}}", "TRUE", tVal, true},
    	{"boolean if not", "{{if and true 1 `hi` | not}}TRUE{{else}}FALSE{{end}}", "FALSE", nil, true},
    	{"boolean if pipe", "{{if true | not | and 1}}TRUE{{else}}FALSE{{end}}", "FALSE", nil, true},
    
    	// Indexing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    		uncountedStatus.Failed = newUncounted
    	}
    	return updated
    }
    
    // removeTrackingFinalizerFromPods removes tracking finalizers from Pods and
    // returns an array of booleans where the i-th value is true if the finalizer
    // of the i-th Pod was successfully removed (if the pod was deleted when this
    // function was called, it's considered as the finalizer was removed successfully).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        private final ResolveState resolveState;
        private final ModuleExclusions moduleExclusions;
        private final boolean isTransitive;
        private final boolean selectedByVariantAwareResolution;
        private final boolean dependenciesMayChange;
        private boolean doesNotHaveDependencies;
    
        @Nullable
        ExcludeSpec previousTraversalExclusions;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        private boolean insideBeforeResolve;
    
        private boolean canBeConsumed;
        private boolean canBeResolved;
        private boolean canBeDeclaredAgainst;
        private final boolean consumptionDeprecated;
        private final boolean resolutionDeprecated;
        private final boolean declarationDeprecated;
        private boolean usageCanBeMutated = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                }
            }
    
            return true;
        }
    
        private boolean hasExpression(String value) {
            return value != null && value.contains("${");
        }
    
        private boolean hasProjectExpression(String value) {
            return value != null && value.contains("${project.");
        }
    
        private boolean validateStringNotEmpty(
                String fieldName,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            importAllInParent: Boolean
        ): Boolean {
            val importKindFromOption = if (importAllInParent) ImportKind.STAR else ImportKind.EXPLICIT
            return importKindFromOption.hasHigherPriorityThan(availableClassifier.importKind)
        }
    
        private fun importAffectsUsagesOfClassesWithSameName(classToImport: ClassId, importAllInParent: Boolean): Boolean {
            var importAffectsUsages = false
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p>This method delegates to the appropriate methods of {@link NavigableSet} (namely {@link
       * NavigableSet#subSet(Object, boolean, Object, boolean) subSet()}, {@link
       * NavigableSet#tailSet(Object, boolean) tailSet()}, and {@link NavigableSet#headSet(Object,
       * boolean) headSet()}) to actually construct the view. Consult these methods for a full
       * description of the returned view's behavior.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                }
            }
    
            return true;
        }
    
        private boolean hasExpression(String value) {
            return value != null && value.contains("${");
        }
    
        private boolean hasProjectExpression(String value) {
            return value != null && value.contains("${project.");
        }
    
        private boolean validateStringNotEmpty(
                String fieldName,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top