Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 175 for rejections (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

            "1.+"                | "select status" | "1.1"         | '["1.2", "1.1"]' | ['1.2', '1.1']     | false           | true             | ["didn't match versions 2.1, 2.0", "rejection: 1.2 by rule because not milestone"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	if err == nil {
    		t.Errorf("Expected error rejecting creates in a namespace when it is missing")
    	}
    
    	// verify update operations in the namespace cause an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/permissions/KaBaseAnalysisPermissionChecker.kt

            permissionRegistry.explicitAnalysisRestriction?.let { restriction ->
                return "Resolve is explicitly forbidden in the current action: ${restriction.description}."
            }
    
            error("Cannot get a rejection reason when analysis is allowed.")
        }
    
        private fun isProhibitedEdtAnalysis(application: Application): Boolean =
            application.isDispatchThread &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/resolution.kt

        data object AccessOnCurrentReceiverOnlyViolation : ErrorReason
        data class DuplicateLocalValue(val name: String) : ErrorReason
        data object UnresolvedAssignmentLhs : ErrorReason // TODO: report candidate with rejection reasons
        data object UnresolvedAssignmentRhs : ErrorReason // TODO: resolution trace here, too?
        data object UnitAssignment : ErrorReason
        data object DanglingPureExpression : ErrorReason
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/math/rand/v2/zipf.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // W.Hormann, G.Derflinger:
    // "Rejection-Inversion to Generate Variates
    // from Monotone Discrete Distributions"
    // http://eeyore.wu-wien.ac.at/papers/96-04-04.wh-der.ps.gz
    
    package rand
    
    import "math"
    
    // A Zipf generates Zipf distributed variates.
    type Zipf struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 14:29:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                case CONFLICT_RESOLUTION:
                    return "By conflict resolution";
                case COMPOSITE_BUILD:
                    return "By composite build";
                case REJECTION:
                    return "Rejection";
                case CONSTRAINT:
                    return "By constraint";
                case BY_ANCESTOR:
                    return "By ancestor";
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/BUILD

        flatc_args = [
            "--gen-mutable",
            "--gen-object-api",
        ],
        out_prefix = "mutable/",
    )
    
    # Generic schema for inference on device (but with reflections makes bigger).
    flatbuffer_cc_library(
        name = "schema_fbs_with_reflection",
        srcs = ["schema.fbs"],
        compatible_with = get_compatible_with_portable(),
        flatc_args = [
            "--reflect-types",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jun 02 08:36:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                            }
    
                            withModule('org:parent') { ComponentSelection selection ->
                                logger.warn("rejecting parent")
                                selection.reject("Rejecting parent")
                            }
                        }
                    }
                }
    
                dependencies {
                    conf "org:child:1.0"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtTypeMappingMode.kt

         */
        DEFAULT_UAST,
    
        /**
         * kotlin.Int is mapped to Ljava/lang/Integer;
         */
        GENERIC_ARGUMENT,
    
        /**
         * kotlin.Int is mapped to Ljava/lang/Integer;
         * No projections allowed in immediate arguments
         */
        SUPER_TYPE,
    
        /**
         * Similar to [SUPER_TYPE], except for that Kotlin collections remain as-is.
         */
        SUPER_TYPE_KOTLIN_COLLECTIONS_AS_IS,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/role.yaml

      namespace: {{ .Values.global.istioNamespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
    rules:
    # permissions to verify the webhook is ready and rejecting
    # invalid config. We use --server-dry-run so no config is persisted.
    - apiGroups: ["networking.istio.io"]
      verbs: ["create"]
      resources: ["gateways"]
    
    # For storing CA secret
    - apiGroups: [""]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 16:21:31 UTC 2023
    - 1021 bytes
    - Viewed (0)
Back to top