Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 195 for rejections (0.12 sec)

  1. 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)
  2. manifests/charts/istio-control/istio-discovery/templates/validatingwebhookconfiguration.yaml

        istio: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    webhooks:
      # Webhook handling per-revision validation. Mostly here so we can determine whether webhooks
      # are rejecting invalid configs on a per-revision basis.
      - name: rev.validation.istio.io
        clientConfig:
          # Should change from base but cannot for API compat
          {{- if .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.cc

                                  encapsulating_function, uncompilable_nodes);
        VLOG(2) << "Rejecting node " << node.name() << ": " << uncompilable_reason
                << ".";
        return false;
      }
      if (!IsCompilableCall(call, lib_runtime, stack_trace, encapsulating_function,
                            uncompilable_nodes)) {
        VLOG(2) << "Rejecting node " << node.name()
                << ": can't compile : " << call.op();
        return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/validatingwebhookconfiguration.yaml

        istio: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    webhooks:
      # Webhook handling per-revision validation. Mostly here so we can determine whether webhooks
      # are rejecting invalid configs on a per-revision basis.
      - name: rev.validation.istio.io
        clientConfig:
          # Should change from base but cannot for API compat
          {{- if .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyArtifactSelector.java

     */
    package org.gradle.api.artifacts;
    
    import javax.annotation.Nullable;
    
    /**
     * Details about an artifact selection in the context of a dependency substitution.
     *
     * Artifact selections are handy as a migration path from the Maven or Ivy ecosystem,
     * where different "variants" are actually represented as different artifacts, with
     * specific (type, extension, classifier) sub-coordinates, in addition to the GAV
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/base/link.go

    // symbols by the compiler.
    //
    // The linker uses the magic symbol prefixes "go:" and "type:".
    // Avoid potential confusion between import paths and symbols
    // by rejecting these reserved imports for now. Also, people
    // "can do weird things in GOPATH and we'd prefer they didn't
    // do _that_ weird thing" (per rsc). See also #4257.
    var ReservedImports = map[string]bool{
    	"go":   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelActionRole.java

     *
     * <p>This is pretty much a placeholder for something more descriptive.
     */
    public enum ModelActionRole {
        Discover(ModelNode.State.Discovered, false), // Defines all projections for the node
        Create(ModelNode.State.Created, false), // Initializes the node
        Defaults(ModelNode.State.DefaultsApplied, true), // Allows a mutation to setup default values for an element
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasonSerializerTest.groovy

                ComponentSelectionReasons.SELECTED_BY_RULE,
                ComponentSelectionReasons.CONFLICT_RESOLUTION,
                ComponentSelectionReasons.CONSTRAINT,
                ComponentSelectionReasons.REJECTION,
                ComponentSelectionReasons.FORCED
        ] as ComponentSelectionDescriptorInternal[]
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/ProjectDetails.java

     */
    
    package org.gradle.api.tasks.diagnostics.internal;
    
    import org.gradle.api.Project;
    
    import javax.annotation.Nullable;
    import java.util.Objects;
    
    /**
     * Provides common projections for selected project properties.
     */
    public interface ProjectDetails {
    
        String getDisplayName();
    
        @Nullable
        String getDescription();
    
        static ProjectDetails of(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultImmutableVersionConstraintTest.groovy

            expect:
            v.requiredVersion == ''
            v.preferredVersion == ''
            v.strictVersion =='1.0'
            v.rejectedVersions == []
        }
    
        def "cannot mutate rejection list"() {
            given:
            def v = new DefaultImmutableVersionConstraint('1.1', '1.0', '1.1.1', ['1.2', '2.0'], null)
    
            when:
            v.rejectedVersions.add('3.0')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top