Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 587 for admitted (0.12 sec)

  1. CHANGELOG/CHANGELOG-1.21.md

    - Fixed a race condition on API server startup ensuring previously created webhook configurations are effective before the first write request is admitted. ([#95783](https://github.com/kubernetes/kubernetes/pull/95783), [@roycaihw](https://github.com/roycaihw)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_deprecate_message.txt

    go list -m -u -f '{{.Deprecated}}' multiline
    stdout '^first line\nsecond line.$'
    
    # When there is a long message, 'go get' should print a placeholder.
    go get long
    stderr '^go: module long is deprecated: \(message omitted: too long\)$'
    go list -m -u -f '{{.Deprecated}}' long
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/resolver/WarningResolutionListener.java

        public void endProcessChildren(Artifact artifact) {}
    
        public void includeArtifact(Artifact artifact) {}
    
        public void omitForNearer(Artifact omitted, Artifact kept) {}
    
        public void omitForCycle(Artifact omitted) {}
    
        public void updateScopeCurrentPom(Artifact artifact, String scope) {}
    
        public void updateScope(Artifact artifact, String scope) {}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/tests/build.sample.conf

    executable: gradle
    args: build
    # Do not fail for deprecation warnings: Project.getConvention emitted by the shadow plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 151 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/iexport.go

    //     type Type struct {
    //         Tag        byte // 'T' or 'U'
    //         Pos        Pos
    //         TypeParams []typeOff  // only present if Tag == 'U'
    //         Underlying typeOff
    //
    //         Methods []struct{  // omitted if Underlying is an interface type
    //             Pos       Pos
    //             Name      stringOff
    //             Recv      Param
    //             Signature Signature
    //         }
    //     }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-operation.yaml

                   },
                  "authorize call",
                  5000)
                end
      # The second patch adds the cluster that is referenced by the lua code
      # cds match is omitted as a new cluster is being added
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: ADD
          value: # cluster specification
            name: "lua_cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention emitted by the shadow plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 151 bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/embedded_protocol_buffers.h

      // protobuf instance from the corresponding static data emitted into the
      // object file.
      struct CPPShim {
        // `expression` is a C++ expression that creates an instance of said
        // protocol buffer when executed.
        string expression;
    
        // `variable_decl` is an "extern C" array declaration that is used in
        // `expression`.  It must be visible wherever `expression` is emitted.
        string variable_decl;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/user-feature/settings.gradle

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild('../build-logic')
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild('../platforms')
    includeBuild('../domain-model')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 579 bytes
    - Viewed (0)
  10. pkg/kubeapiserver/admission/exclusion/resources.go

    package exclusion
    
    import (
    	"slices"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // include is the list of resources that the expression-based admission controllers
    // should intercept.
    // The version is omitted, all versions of the same GroupResource are treated the same.
    // If a resource is transient, i.e., not persisted in the storage, the resource must be
    // in either include or excluded list.
    var included = []schema.GroupResource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top