Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 410 for overriding (0.12 sec)

  1. releasenotes/notes/custom-gw-classname.yaml

    releaseNotes:
    - |
      **Added** an environment variable for istiod `PILOT_GATEWAY_API_DEFAULT_GATEWAYCLASS_NAME` that allows overriding the name of the default `GatewayClass` Gateway API resource. The default value is `istio`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 574 bytes
    - Viewed (0)
  2. internal/ioutil/read_file.go

    import (
    	"io"
    	"io/fs"
    	"os"
    
    	"github.com/minio/minio/internal/disk"
    )
    
    var (
    	// OpenFileDirectIO allows overriding default function.
    	OpenFileDirectIO = disk.OpenFileDirectIO
    	// OsOpen allows overriding default function.
    	OsOpen = os.Open
    	// OsOpenFile allows overriding default function.
    	OsOpenFile = os.OpenFile
    )
    
    // ReadFileWithFileInfo reads the named file and returns the contents.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 09 18:17:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. releasenotes/notes/autoregistered-workload-entry-locality.yaml

    apiVersion: release-notes/v2
    
    kind: feature
    
    area: traffic-management
    
    issue:
    - https://github.com/istio/istio/pull/33426
    - 33426
    
    releaseNotes:
    - |
      **Added** support for overriding the locality of the WorkloadGroup template in
      auto registered WorkloadEntries. Locality overrides can be passed in through
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 22 18:59:18 UTC 2021
    - 342 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_replace_conflict.txt

    # Conflicting replaces in workspace modules returns error that suggests
    # overriding it in the go.work file.
    
    ! go list -m example.com/dep
    stderr 'go: conflicting replacements for example.com/dep@v1.0.0:\n\t'$PWD${/}'dep1\n\t'$PWD${/}'dep2\nuse "go work edit -replace example.com/dep@v1.0.0=\[override\]" to resolve'
    go work edit -replace example.com/dep@v1.0.0=./dep1
    go list -m example.com/dep
    stdout 'example.com/dep v1.0.0 => ./dep1'
    
    -- foo --
    -- go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 15 22:28:43 UTC 2022
    - 1009 bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/testFixtures/groovy/org/gradle/language/scala/fixtures/BadScalaLibrary.groovy

    }'''),
                new JvmSourceFile("compile/test", "Person2.scala", '''
    package compile.test;
    
    class Person2 {
        def test;
    }
    ''')
        ]
    
        List<String> compilerErrors = [
                "Person.scala:5: overriding method toString in class Object of type ()String",
                "Person2.scala:4: class Person2 needs to be abstract, since method test is not defined"
    
        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/telemetry.txt

    # Tests for the telemetry subcommand,
    
    # The script test framework sets TEST_TELEMETRY_DIR (overriding the
    # default telemetry dir location) and then checks that at least one
    # counter has been written per script tests.
    # Run go before unsetting TEST_TELEMETRY_DIR to make the tests happy.
    # We want to unset it so the environment we're testing is as close
    # to a user's environment.
    go help telemetry
    env TEST_TELEMETRY_DIR=
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. pkg/features/security.go

    settings, including in-mesh mTLS and external TLS. Valid values are:
    
    * '' or unset places no additional restrictions.
    * 'fips-140-2' which enforces a version of the TLS protocol and a subset
    of cipher suites overriding any user preferences or defaults for all runtime
    components, including Envoy, gRPC Go SDK, and gRPC C++ SDK.
    
    WARNING: Setting compliance policy in the control plane is a necessary but
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/config.go

    	IngressGatewayServiceName string
    
    	// IngressGatewayServiceNamespace allows overriding the namespace of the ingressgateway service (defaults to SystemNamespace)
    	// This field should only be set when DeployIstio is false
    	IngressGatewayServiceNamespace string
    
    	// IngressGatewayIstioLabel allows overriding the selector of the ingressgateway service (defaults to istio=ingressgateway)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/MojosExecutionStrategy.java

     */
    package org.apache.maven.plugin;
    
    import java.util.List;
    
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.lifecycle.LifecycleExecutionException;
    
    /**
     * Interface allows overriding default mojo execution strategy For example it is possible wrap some mojo execution to
     * decorate default functionality or skip some executions
     */
    public interface MojosExecutionStrategy {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProvider.java

    /**
     * @author jflute
     */
    public class FessActionAdjustmentProvider implements ActionAdjustmentProvider {
    
        // _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
        // you can adjust your actions by overriding
        // default methods defined at the interface
        // _/_/_/_/_/_/_/_/_/_/
    
        @Override
        public FormMappingOption adjustFormMapping() {
            return new FormMappingOption()
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top