Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 663 for 9$ (0.07 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

      // CHECK-LABEL: func @parallel_execute_with_input_with_sharding_configurations
      // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<8xi32>, %[[ARG_1:[a-z0-9]*]]: tensor<8xi32>, %[[ARG_2:[a-z0-9]*]]: tensor<*xi1>, %[[ARG_3:[a-z0-9]*]]: tensor<*xi1>, %[[ARG_4:[a-z0-9]*]]: tensor<*xi32>, %[[ARG_5:[a-z0-9]*]]: tensor<*xi32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/JavaVersion.java

     * limitations under the License.
     */
    package org.gradle.api;
    
    import org.gradle.api.internal.jvm.JavaVersionParser;
    
    /**
     * An enumeration of Java versions.
     * Before 9: http://www.oracle.com/technetwork/java/javase/versioning-naming-139433.html
     * 9+: http://openjdk.java.net/jeps/223
     */
    public enum JavaVersion {
        VERSION_1_1, VERSION_1_2, VERSION_1_3, VERSION_1_4,
        VERSION_1_5, VERSION_1_6, VERSION_1_7, VERSION_1_8,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                        pattern: ^$|^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
                        type: string
                      kind:
                        description: kind is kind of the target resource.
                        maxLength: 63
                        minLength: 1
                        pattern: ^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$
                        type: string
                      name:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. src/crypto/md5/md5block.go

    		d = a + bits.RotateLeft32((((a^b)&c)^b)+d+x6+0xc040b340, 9)
    		c = d + bits.RotateLeft32((((d^a)&b)^a)+c+xb+0x265e5a51, 14)
    		b = c + bits.RotateLeft32((((c^d)&a)^d)+b+x0+0xe9b6c7aa, 20)
    		a = b + bits.RotateLeft32((((b^c)&d)^c)+a+x5+0xd62f105d, 5)
    		d = a + bits.RotateLeft32((((a^b)&c)^b)+d+xa+0x02441453, 9)
    		c = d + bits.RotateLeft32((((d^a)&b)^a)+c+xf+0xd8a1e681, 14)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    				return checker.CostEstimate{Min: c.Min + 5, Max: c.Max + 9}
    			},
    			expectRuntimeCost: func(c uint64) uint64 { return c + 5 },
    		},
    		{
    			ops: []string{".containsCIDR(cidr('192.168.0.0/16'))"},
    			expectEsimatedCost: func(c checker.CostEstimate) checker.CostEstimate {
    				return checker.CostEstimate{Min: c.Min + 5, Max: c.Max + 9}
    			},
    			expectRuntimeCost: func(c uint64) uint64 { return c + 5 },
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

    import java.util.Arrays;
    import java.util.Collections;
    import java.util.List;
    
    /**
     * These JVM arguments should be passed to any Gradle process that will be running on Java 9+
     * Gradle accesses those packages reflectively. On Java versions 9 to 15, the users will get
     * a warning they can do nothing about. On Java 16+, strong encapsulation of JDK internals is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. test/codegen/bits.go

    // check direct operation on memory with constant and shifted constant sources
    func bitOpOnMem(a []uint32, b, c, d uint32) {
    	// amd64:`ANDL\s[$]200,\s\([A-Z][A-Z0-9]+\)`
    	a[0] &= 200
    	// amd64:`ORL\s[$]220,\s4\([A-Z][A-Z0-9]+\)`
    	a[1] |= 220
    	// amd64:`XORL\s[$]240,\s8\([A-Z][A-Z0-9]+\)`
    	a[2] ^= 240
    }
    
    func bitcheckMostNegative(b uint8) bool {
    	// amd64:"TESTB"
    	return b&0x80 == 0x80
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/test/echo/docker/Dockerfile.app_sidecar_base_centos

    ARG VM_IMAGE_NAME=rockylinux
    ARG VM_IMAGE_VERSION=9
    FROM ${VM_IMAGE_NAME}:${VM_IMAGE_VERSION}
    
    # hadolint ignore=DL3005,DL3008,DL3033
    RUN yum install -y \
        iptables \
        iproute \
        sudo \
        nmap-ncat \
        tcpdump \
        procps \
        conntrack \
        net-tools \
        ca-certificates \
        && update-ca-trust \
        && yum clean all \
        && rm -rf /var/cache/yum
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 568 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/testdata/issue20789.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure this doesn't crash the compiler.
    // Line 9 must end in EOF for this test (no newline).
    
    package e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 326 bytes
    - Viewed (0)
  10. src/runtime/symtabinl_test.go

    		"tiuInlined2:7 tiuTest:11":               0,
    		"tiuTest:12":                             0,
    	}
    	wantStart := map[string]int{
    		"tiuInlined1": 2,
    		"tiuInlined2": 5,
    		"tiuTest":     9,
    	}
    
    	// Iterate over the PCs in tiuTest and walk the inline stack for each.
    	prevStack := "x"
    	for pc := pc1; pc < pc1+1024 && findfunc(pc) == f; pc += sys.PCQuantum {
    		stack := ""
    		u, uf := newInlineUnwinder(f, pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top