Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 199 for minipay (0.24 sec)

  1. src/internal/syscall/windows/version_windows.go

    })
    
    // SupportTCPKeepAliveInterval indicates whether TCP_KEEPIDLE is supported.
    // The minimal requirement is Windows 10.0.16299.
    func SupportTCPKeepAliveIdle() bool {
    	initTCPKeepAlive()
    	return supportTCPKeepAliveIdle
    }
    
    // SupportTCPKeepAliveInterval indicates whether TCP_KEEPINTVL is supported.
    // The minimal requirement is Windows 10.0.16299.
    func SupportTCPKeepAliveInterval() bool {
    	initTCPKeepAlive()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pkg/config/mesh/mesh_test.go

    			}
    			// Just extract fields we are testing
    			minimal := &meshconfig.MeshConfig{}
    			minimal.DefaultProviders = res.DefaultProviders
    			minimal.ExtensionProviders = res.ExtensionProviders
    			minimal.TrustDomainAliases = res.TrustDomainAliases
    
    			want := &meshconfig.MeshConfig{}
    			protomarshal.ApplyYAML(tt.out, want)
    			if d := cmp.Diff(want, minimal, protocmp.Transform()); d != "" {
    				t.Fatalf("got diff %v", d)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. releasenotes/notes/cni-no-sh.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 48746
    releaseNotes:
      - |
        **Fixed** an issue causing Istio CNI to stop functioning on minimal/locked down nodes (such as no `sh` binary).
        The new logic runs with no external dependencies, and will attempt to continue if errors are encountered (which could be caused by things like SELinux rules).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 21:29:52 UTC 2024
    - 445 bytes
    - Viewed (0)
  4. internal/kms/config_test.go

    		}
    	}
    }
    
    var isPresentTests = []struct {
    	Env        map[string]string
    	IsPresent  bool
    	ShouldFail bool
    }{
    	{Env: map[string]string{}}, // 0
    	{ // 1
    		Env: map[string]string{
    			EnvKMSSecretKey: "minioy-default-key:6jEQjjMh8iPq8/gqgb4eMDIZFOtPACIsr9kO+vx8JFs=",
    		},
    		IsPresent: true,
    	},
    	{ // 2
    		Env: map[string]string{
    			EnvKMSEndpoint:   "https://127.0.0.1:7373",
    			EnvKMSDefaultKey: "minio-key",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/RangeSet.java

       *
       * @since 21.0
       */
      boolean enclosesAll(Iterable<Range<C>> other);
    
      /** Returns {@code true} if this range set contains no ranges. */
      boolean isEmpty();
    
      /**
       * Returns the minimal range which {@linkplain Range#encloses(Range) encloses} all ranges in this
       * range set.
       *
       * @throws NoSuchElementException if this range set is {@linkplain #isEmpty() empty}
       */
      Range<C> span();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/RangeSet.java

            return false;
          }
        }
        return true;
      }
    
      /** Returns {@code true} if this range set contains no ranges. */
      boolean isEmpty();
    
      /**
       * Returns the minimal range which {@linkplain Range#encloses(Range) encloses} all ranges in this
       * range set.
       *
       * @throws NoSuchElementException if this range set is {@linkplain #isEmpty() empty}
       */
      Range<C> span();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MinimalExternalModuleDependency.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * The minimal information Gradle needs to address an external module.
     *
     * @since 6.8
     */
    @HasInternalProtocol
    public interface MinimalExternalModuleDependency extends ExternalModuleDependency {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/MinimalEvaluationSchemaComponent.kt

    import org.gradle.internal.declarativedsl.schemaBuilder.FunctionExtractor
    import org.gradle.internal.declarativedsl.schemaBuilder.PropertyExtractor
    
    
    /**
     * Defines a minimal set of features for Declarative DSL evaluation. The only Gradle-related customization in this component is [gradleConfigureLambdas].
     * Besides, no custom Gradle APIs are considered as schema contributors.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. build-logic-commons/basics/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    description = "Provides plugins for configuring miscellaneous things (repositories, reproducibility, minify)"
    
    group = "gradlebuild"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    
    dependencies {
        api("gradlebuild:build-environment")
        api(platform(project(":build-platform")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 1022 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/MinimalResolutionResult.java

    import org.gradle.api.artifacts.result.ResolvedComponentResult;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    
    import java.util.function.Supplier;
    
    /**
     * Contains the minimal data required to construct a complete {@link org.gradle.api.artifacts.result.ResolutionResult}.
     */
    public class MinimalResolutionResult {
    
        private final Supplier<ResolvedComponentResult> rootSource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top