Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 244 for based (0.05 sec)

  1. cmd/veeam-sos-api.go

    //     system.xml. Vendors can work with Veeam Product Management and the Alliances team on getting approval to integrate
    //     specific system recommendations based on current support case statistics and storage performance possibilities.
    //     Vendors might change the settings based on the configuration and scale out of the solution (more storage nodes =>
    //     higher task limit).
    //
    //     <S3ConcurrentTaskLimit>
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. pkg/kube/apimirror/probe.go

    // upstream Kubernetes API instead.
    package apimirror
    
    import (
    	"encoding/json"
    	"fmt"
    	"strconv"
    )
    
    // HTTPGetAction describes an action based on HTTP Get requests.
    type HTTPGetAction struct {
    	// Path to access on the HTTP server.
    	// +optional
    	Path string `json:"path,omitempty" protobuf:"bytes,1,opt,name=path"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

    import org.gradle.internal.serialize.graph.withDebugFrame
    import kotlin.reflect.KClass
    
    
    /**
     * An implementation of the Codec protocol that (based on a [Binding.tag]) chooses and delegates
     * to the proper binding (if one is found).
     *
     * The binding (a tagged codec) is chosen based on the availability of a [Binding.encoding] for the value being encoded.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. security/pkg/server/ca/authenticate/oidc.go

    	issuer := jwtRule.GetIssuer()
    	jwksURL := jwtRule.GetJwksUri()
    	// The key of a JWT issuer may change, so the key may need to be updated.
    	// Based on https://pkg.go.dev/github.com/coreos/go-oidc/v3/oidc#NewRemoteKeySet
    	// the oidc library handles caching and cache invalidation. Thus, the verifier
    	// is only created once in the constructor.
    	var verifier *oidc.IDTokenVerifier
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

        }
    
        /**
         * If the module-path contains a filename-based auto-module, prepares a warning message.
         * It is caller's responsibility to send the message to a logger.
         *
         * @param modulePaths content of the module path, or {@code null} if none
         * @return warning message if at least one filename-based auto-module was found
         * @throws IOException if an error occurred while reading module information
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/piggyback_test.go

    					}
    					output, _, err := istioCtl.Invoke(args)
    					if err != nil {
    						return err
    					}
    					return expectSubstrings(output, "Clusters Match", "Listeners Match", "Routes Match")
    				})
    
    				// Test gRPC-based tapped XDS using istioctl.
    				retry.UntilSuccessOrFail(t, func() error {
    					pf, err := t.Clusters()[0].NewPortForwarder(podName, namespace, "localhost", 0, 15004)
    					if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

        /**
         * If the module-path contains at least one filename-based auto-module, prepares a warning message.
         * The module path is the collection of dependencies associated to {@link JavaPathType#MODULES}.
         * It is caller's responsibility to send the message to a logger.
         *
         * @return warning message if at least one filename-based auto-module was found
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentInitializer.java

    public class AgentInitializer {
        private final AgentStatus agentStatus;
    
        public AgentInitializer(AgentStatus agentStatus) {
            this.agentStatus = agentStatus;
        }
    
        /**
         * Sets up the agent-based instrumentation if it is enabled for the process.
         */
        public void maybeConfigureInstrumentationAgent() {
            if (agentStatus.isAgentInstrumentationEnabled()) {
                DefaultClassFileTransformer.tryInstall();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/AbstractInjectedClasspathInstrumentationStrategy.kt

            return if (isThirdPartyAgentPresent) {
                // Currently, the build logic instrumentation can interfere with Java agents, such as Jacoco
                // So, disable or fail or whatever based on which execution modes are enabled
                whenThirdPartyAgentPresent()
            } else {
                CachedClasspathTransformer.StandardTransform.BuildLogic
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtKlibSourceFileNameProvider.kt

    public typealias KtKlibSourceFileNameProvider = KaKlibSourceFileNameProvider
    
    @KaAnalysisNonPublicApi
    public interface KaKlibSourceFileProviderMixIn : KaSessionMixIn {
        /**
         * If [KtDeclaration] is a deserialized, klib based symbol, then information about the original
         * [SourceFile] might be retained.
         */
        public fun KaDeclarationSymbol.getKlibSourceFileName(): String? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top