Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,150 for mode_ (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    If they have changed, Gradle will execute the task.
    Otherwise, it will skip execution.
    
    Incremental builds are always enabled, and the best way to see them in action is to turn on _verbose mode_.
    With verbose mode, each task state is labeled during a build:
    
    [source,text]
    ----
    $ ./gradlew compileJava --console=verbose
    
    > Task :buildSrc:generateExternalPluginSpecBuilders UP-TO-DATE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/model.go

    	"istio.io/istio/pilot/pkg/credentials"
    	"istio.io/istio/pilot/pkg/model"
    	creds "istio.io/istio/pilot/pkg/model/credentials"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	gatewayAliasForAnnotationKey = "gateway.istio.io/alias-for"
    	gatewayTLSTerminateModeKey   = "gateway.istio.io/tls-terminate-mode"
    	gatewayNameOverride          = "gateway.istio.io/name-override"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. model.go

    package gorm
    
    import "time"
    
    // Model a basic GoLang struct which includes the following fields: ID, CreatedAt, UpdatedAt, DeletedAt
    // It may be embedded into your model or you may build your own model without it
    //
    //	type User struct {
    //	  gorm.Model
    //	}
    type Model struct {
    	ID        uint `gorm:"primarykey"`
    	CreatedAt time.Time
    	UpdatedAt time.Time
    	DeletedAt DeletedAt `gorm:"index"`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 18 01:06:43 UTC 2023
    - 396 bytes
    - Viewed (0)
  4. pilot/pkg/xds/v3/model.go

    package v3
    
    import (
    	"istio.io/istio/pkg/model"
    )
    
    const (
    	ClusterType                = model.ClusterType
    	EndpointType               = model.EndpointType
    	ListenerType               = model.ListenerType
    	RouteType                  = model.RouteType
    	SecretType                 = model.SecretType
    	ExtensionConfigurationType = model.ExtensionConfigurationType
    	NameTableType              = model.NameTableType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Model.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model;
    
    // TODO:ADAM - Deprecate
    /**
     * A model that is buildable by the Tooling API. Models contain various information regarding the build.
     * Models are typically tailored to a specific domain, for example build environment or IDE.
     *
     * @since 1.0-milestone-8
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 938 bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Model.java

     * <p>
     * It is an error for a {@code @Model} rule to return {@code void} and specify a non-managed type as the first parameter.
     * It is an error for a {@code @Model} rule to return {@code void} and for the first parameter to be annotated with {@link Path}.
     * It is an error for a {@code @Model} rule to specify a managed type as the return type.
    
     * <h3>Creating non-managed model elements</h3>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/authorizer/modes/modes.go

    limitations under the License.
    */
    
    package modes
    
    import "k8s.io/apimachinery/pkg/util/sets"
    
    const (
    	// ModeAlwaysAllow is the mode to set all requests as authorized
    	ModeAlwaysAllow string = "AlwaysAllow"
    	// ModeAlwaysDeny is the mode to set no requests as authorized
    	ModeAlwaysDeny string = "AlwaysDeny"
    	// ModeABAC is the mode to use Attribute Based Access Control to authorize
    	ModeABAC string = "ABAC"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 05 01:22:41 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  8. src/mdo/model-version.vm

    import org.apache.maven.api.xml.XmlNode;
    #foreach ( $class in $model.allClasses )
    import ${packageModelV4}.${class.Name};
    #end
    
    @Generated
    public class ${className} {
    
        public String getModelVersion(${root.name} model) {
            Objects.requireNonNull(model, "model cannot be null");
    
    #set ( $String = $model.getClass().forName("java.lang.String") )
    #set ( $Comparator = $model.getClass().forName("java.util.Comparator") )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/src/main/mdo/supplemental-model.mdo

            <field>
              <name>project</name>
              <version>1.0.0</version>
              <description>Snippets of POM xml files used to supplement the data model.</description>
              <type>DOM</type>
            </field>
          </fields>
        </class>
      </classes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 21 12:56:07 UTC 2009
    - 2.1K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/testdata/accesslog/mode-server.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: logs
    spec:
      accessLogging:
        - providers:
            - name: envoy
          match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 19 17:39:03 UTC 2022
    - 175 bytes
    - Viewed (0)
Back to top