Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 912 for regular (0.15 sec)

  1. releasenotes/notes/fips.yaml

      `ECDHE-ECDSA-AES256-GCM-SHA384`, `ECDHE-RSA-AES256-GCM-SHA384`, and ECDH
      curves to `P-256`. These restrictions apply on the following data paths:
    
      * mTLS communication between Envoy proxies;
      * regular TLS on the downstream and the upstream of Envoy proxies (e.g. gateway);
      * Google gRPC side requests from Envoy proxies (e.g. Stackdriver extensions);
      * Istiod xDS server;
      * Istiod injection and validation webhook servers.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RelativePathTrackingFileSystemSnapshotHierarchyVisitor.java

        /**
         * Called before visiting the contents of a directory.
         */
        default void enterDirectory(DirectorySnapshot directorySnapshot, RelativePathSupplier relativePath) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
         * @return how to continue visiting the rest of the snapshot hierarchy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. docs/assets/css/app.css

    @font-face {
        font-family: cash-market;
        src: url("https://cash-f.squarecdn.com/static/fonts/cash-market/v2/CashMarket-Regular.woff2") format("woff2");
        font-weight: 400;
        font-style: normal
    }
    
    @font-face {
        font-family: cash-market;
        src: url("https://cash-f.squarecdn.com/static/fonts/cash-market/v2/CashMarket-Medium.woff2") format("woff2");
        font-weight: 500;
        font-style: normal
    }
    
    @font-face {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 08 07:57:03 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/CachingResourceHasher.java

    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    
    import javax.annotation.Nullable;
    import java.io.IOException;
    
    /**
     * Caches the result of hashing regular files with a {@link ResourceHasher}.
     * It does not cache the result of hashing {@link ZipEntry}s.
     * It also caches the absence of a hash.
     */
    public class CachingResourceHasher implements ResourceHasher {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/functional/src/main/java/org/gradle/internal/io/IoSupplier.java

     */
    @FunctionalInterface
    public interface IoSupplier<T> {
        @Nullable
        T get() throws IOException;
    
        /**
         * Wraps an {@link IOException}-throwing {@link IoSupplier} into a regular {@link Supplier}.
         *
         * Any {@code IOException}s are rethrown as {@link UncheckedIOException}.
         */
        static <T> Supplier<T> wrap(IoSupplier<T> supplier) {
            return () -> {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalFileDependencyMetadata.java

    import org.gradle.api.artifacts.component.ComponentIdentifier;
    import org.gradle.api.internal.file.FileCollectionInternal;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents a local file dependency. Should be modelled as a regular dependency, but is treated separately as a migration step.
     */
    public interface LocalFileDependencyMetadata {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/math/big/arith_amd64.s

    	MOVQ z+0(FP), R10
    
    	MOVQ $0, CX		// c = 0
    	MOVQ $0, SI		// i = 0
    
    	// s/JL/JMP/ below to disable the unrolled loop
    	SUBQ $4, DI		// n -= 4
    	JL V1			// if n < 0 goto V1
    
    U1:	// n >= 0
    	// regular loop body unrolled 4x
    	ADDQ CX, CX		// restore CF
    	MOVQ 0(R8)(SI*8), R11
    	MOVQ 8(R8)(SI*8), R12
    	MOVQ 16(R8)(SI*8), R13
    	MOVQ 24(R8)(SI*8), R14
    	ADCQ 0(R9)(SI*8), R11
    	ADCQ 8(R9)(SI*8), R12
    	ADCQ 16(R9)(SI*8), R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/doc.go

    //
    // This interface is being experimented with as an easier way to write controllers
    // with a bit less boilerplate.
    //
    // Informer/Lister classes are thin wrappers providing a type-safe interface
    // over regular interface{}-based Informers/Listers
    //
    // Controller[T] provides a reusable way to reconcile objects out of an informer
    // using the tried and true controller design pattern found all over k8s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasherTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/20398")
        def "falls back to full file hash when abi extraction fails for a regular file"() {
            def apiClassExtractor = Mock(ApiClassExtractor)
    
            def resourceHasher = AbiExtractingClasspathResourceHasher.withFallback(apiClassExtractor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. src/encoding/xml/example_text_marshaling_test.go

    	case Small:
    		name = "small"
    	case Large:
    		name = "large"
    	}
    	return []byte(name), nil
    }
    
    func Example_textMarshalXML() {
    	blob := `
    	<sizes>
    		<size>small</size>
    		<size>regular</size>
    		<size>large</size>
    		<size>unrecognized</size>
    		<size>small</size>
    		<size>normal</size>
    		<size>small</size>
    		<size>large</size>
    	</sizes>`
    	var inventory struct {
    		Sizes []Size `xml:"size"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 14:18:06 UTC 2018
    - 1.4K bytes
    - Viewed (0)
Back to top