Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,226 for managed (0.13 sec)

  1. samples/security/spire/README.md

      ```bash
      $ kubectl apply -f clusterspiffeid.yaml
      ```
    
    1. Add the `spiffe.io/spire-managed-identity: true` label to the Ingress-gateway Deployment:
    
      ```bash
      $ kubectl patch deployment istio-ingressgateway -n istio-system -p '{"spec":{"template":{"metadata":{"labels":{"spiffe.io/spire-managed-identity": "true"}}}}}'
      ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. releasenotes/notes/gateway-api118.yaml

        Found managed gateway: default/gateway
        {{< /text >}}
    
        If you see "Found managed gateway", you may be impacted by this change.
    
        Prior to Istio 1.18, the managed gateway worked by creating a minimal Deployment configuration which
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 08:37:21 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/SimpleManagedType.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract;
    
    import org.gradle.model.Managed;
    
    @Managed
    public interface SimpleManagedType {
    
        String getName();
    
        void setName(String name);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 813 bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/DefaultStructBindingsStore.java

    import org.gradle.model.Managed;
    import org.gradle.model.Unmanaged;
    import org.gradle.model.internal.manage.schema.CollectionSchema;
    import org.gradle.model.internal.manage.schema.ManagedImplSchema;
    import org.gradle.model.internal.manage.schema.ModelSchema;
    import org.gradle.model.internal.manage.schema.ModelSchemaStore;
    import org.gradle.model.internal.manage.schema.RuleSourceSchema;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelMapModelProjection.java

        private final boolean managed;
    
        private ModelMapModelProjection(ModelType<?> publicType, ModelType<I> baseItemModelType, boolean managed, ChildNodeInitializerStrategyAccessor<? super I> creatorStrategyAccessor) {
            this.publicType = publicType;
            this.baseItemModelType = baseItemModelType;
            this.managed = managed;
            this.creatorStrategyAccessor = creatorStrategyAccessor;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ReadonlyImmutableManagedPropertyException.java

        }
    
        private static String toMessage(ModelType<?> managedModelType, String name, ModelType<?> propertyType) {
            return String.format("Invalid managed model type '%s': read only property '%s' has non managed type %s, only managed types can be used", managedModelType, name, propertyType);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelReportIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  8. architecture/build-state-model.md

    The build tree state is managed by the `BuildTreeState` class.
    An instance is created at the start of a build execution and discarded at the end of the execution.
    
    ### Build state
    
    The "build state" holds the state for a build within the build definition for a single build execution, and is contained by the build tree state.
    
    The build state is managed by the `BuildState` class.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/modelRules/ruleSourcePluginEach/groovy/build.gradle

    @Managed interface Item extends Named {}
    @Managed interface FileItem extends Item {
        void setSize(int size)
        int getSize()
    }
    @Managed interface DirectoryItem extends Item {
        ModelMap<Item> getChildren()
    }
    
    class PluginRules extends RuleSource {
        @Defaults void setDefaultFileSize(@Each FileItem file) {
            file.size = 1024
        }
    
        @Rules void applyValidateRules(ValidateRules rules, @Each DirectoryItem directory)  {}
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/validation/duplicate-plugin.xml

      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>test</groupId>
              <artifactId>managed-duplicate</artifactId>
            </plugin>
            <plugin>
              <groupId>test</groupId>
              <artifactId>managed-duplicate</artifactId>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
            <groupId>test</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 31 11:27:00 UTC 2010
    - 2.2K bytes
    - Viewed (0)
Back to top