Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 505 for clip (0.05 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    //===----------------------------------------------------------------------===//
    // ClipByValue
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: @clip
    func.func @clip(%arg0 : tensor<f32>, %arg1 : tensor<f32>, %arg2 : tensor<f32>) -> tensor<f32> {
      // CHECK: [[VAL:%.+]] = mhlo.clamp %arg1, %arg0, %arg2
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-shared/src/integTest/groovy/org/gradle/integtests/PathTraversalCheckerIntegrationTest.groovy

    import java.util.zip.ZipEntry
    import java.util.zip.ZipFile
    import java.util.zip.ZipOutputStream
    
    /**
     * Ensures Gradle core tasks and types are not subject to the
     * <a href="https://snyk.io/research/zip-slip-vulnerability">Zip Slip Vulnerability</a>.
     */
    class PathTraversalCheckerIntegrationTest extends AbstractIntegrationSpec {
    
        private TestFile getEvilZip() {
            file("evil.zip")
        }
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.fints"/>
      <mime-type type="application/vnd.flographit">
        <glob pattern="*.gph"/>
      </mime-type>
      <mime-type type="application/vnd.fluxtime.clip">
        <glob pattern="*.ftc"/>
      </mime-type>
      <mime-type type="application/vnd.font-fontforge-sfd"/>
      <mime-type type="application/vnd.framemaker">
        <glob pattern="*.fm"/>
        <glob pattern="*.frame"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  4. src/internal/cpu/cpu_arm.go

    	ARM.HasIDIVA = isSet(HWCap, hwcap_IDIVA)
    	// lpae is required to make the 64-bit instructions LDRD and STRD (and variants) atomic.
    	// See ARMv7 manual section B1.6.
    	// We also need at least a v7 chip, for the DMB instruction.
    	ARM.HasV7Atomics = isSet(HWCap, hwcap_LPAE) && isV7(Platform)
    }
    
    func isSet(hwc uint, value uint) bool {
    	return hwc&value != 0
    }
    
    func isV7(s string) bool {
    	if s == "aarch64" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:38:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/PathTraversalChecker.java

         *
         * This code is used for path traversal, ZipSlip and TarSlip detection.
         *
         * <b>IMPLEMENTATION NOTE</b>
         * We do it this way instead of the way recommended in <a href="https://snyk.io/research/zip-slip-vulnerability"></a>
         * for performance reasons, calling {@link File#getCanonicalPath()} is too expensive.
         *
         * @throws IllegalArgumentException if the entry contains vulnerable sequences
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedObjectiveCHelloWorldApp.groovy

                    NSData *strData = [hello dataUsingEncoding: NSASCIIStringEncoding];
                    [stdout writeData: strData];
                }"""),
    
                    sourceFile("c", "clib.c", """
                #include <stdio.h>
                #include "hello.h"
    
                void bonjour() {
                    printf("Bonjour, Monde!\\n");
                }
            """),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

    import org.apache.maven.building.Source;
    import org.apache.maven.cli.configuration.ConfigurationProcessor;
    import org.apache.maven.cli.configuration.SettingsXmlConfigurationProcessor;
    import org.apache.maven.cli.event.DefaultEventSpyContext;
    import org.apache.maven.cli.event.ExecutionEventLogger;
    import org.apache.maven.cli.internal.BootstrapCoreExtensionManager;
    import org.apache.maven.cli.internal.extension.io.CoreExtensionsStaxReader;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

    import org.apache.commons.cli.Option;
    import org.apache.commons.cli.Options;
    import org.apache.commons.cli.ParseException;
    import org.apache.maven.Maven;
    import org.apache.maven.cli.transfer.ConsoleMavenTransferListener;
    import org.apache.maven.cli.transfer.QuietMavenTransferListener;
    import org.apache.maven.cli.transfer.SimplexTransferListener;
    import org.apache.maven.cli.transfer.Slf4jMavenTransferListener;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                            BufferCaster.cast(buffer).limit(0);
                            return -1;
                        }
                        throw e;
                    }
                    BufferCaster.cast(buffer).flip();
    
                    if (nread < 0) {
                        return -1;
                    }
                }
    
                int count = Math.min(buffer.remaining(), max);
                buffer.get(dest, offset, count);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. pkg/test/loadbalancersim/loadbalancer/edf.go

    // Len implements heap.Interface/sort.Interface
    func (pq priorityQueue) Len() int { return len(pq) }
    
    // Less implements heap.Interface/sort.Interface
    func (pq priorityQueue) Less(i, j int) bool {
    	// Flip logic to make this a min queue.
    	if pq[i].deadline == pq[j].deadline {
    		return pq[i].index < pq[j].index
    	}
    	return pq[i].deadline < pq[j].deadline
    }
    
    // Swap implements heap.Interface/sort.Interface
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top