Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for ind2 (0.07 sec)

  1. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

        return failure();
    
      // Reshape recurrent weights to vectors if indy behaviour is enabled.
      // IndyLSTMs are a LSTM variant with diagonal recurrent weight
      // matrices. For optimization purposes these are provided as vectors.
      Value recurrent_to_input_weights =
          indy ? mlir::cast<Value>(
                     CreateFlattenOP(recurrent_weights_array->getResult(0),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  2. src/cmd/internal/pkgpattern/pat_test.go

    }
    
    type stringPairTest struct {
    	in1 string
    	in2 string
    	out bool
    }
    
    func testStringPairs(t *testing.T, name string, tests []stringPairTest, f func(string, string) bool) {
    	for _, tt := range tests {
    		if out := f(tt.in1, tt.in2); out != tt.out {
    			t.Errorf("%s(%q, %q) = %v, want %v", name, tt.in1, tt.in2, out, tt.out)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.groovy

            UserCodeApplicationId id2 = null
            List<UserCodeApplicationId> ids = []
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
                id1 = it
                container.register("a") {
                    ids << userCodeApplicationContext.current()
                }
            }
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
                id2 = it
                container.named("a").configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/syscall/mkasm.go

    	if err != nil {
    		log.Fatalf("can't open syscall file: %s", err)
    	}
    	in2, err := os.ReadFile(syscallArchFilename)
    	if err != nil {
    		log.Fatalf("can't open syscall file: %s", err)
    	}
    	in3, err := os.ReadFile("z" + syscallArchFilename)
    	if err != nil {
    		log.Fatalf("can't open syscall file: %s", err)
    	}
    	in := string(in1) + string(in2) + string(in3)
    
    	trampolines := map[string]bool{}
    
    	var out bytes.Buffer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallSiteDecorator.java

    import org.codehaus.groovy.runtime.callsite.CallSite;
    import org.gradle.api.NonNullApi;
    
    import java.lang.invoke.MethodHandles;
    
    /**
     * A handler for Groovy call sites, including Indy ones, which is used to replace the call sites of some calls at runtime,
     * in order to alter their behavior.
     */
    @NonNullApi
    public interface CallSiteDecorator {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 27 13:58:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. docs/az/docs/index.md

    * `--reload`: kod dəyişikliyindən sonra avtomatik olaraq serveri yenidən işə salır. Bu parametrdən yalnız development mərhələsində istifadə etməliyik.
    
    </details>
    
    ### İndi yoxlayaq
    
    Bu linki brauzerimizdə açaq <a href="http://127.0.0.1:8000/items/5?q=somequery" class="external-link" target="_blank">http://127.0.0.1:8000/items/5?q=somequery</a>.
    
    Aşağıdakı kimi bir JSON cavabı görəcəksiniz:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_ordinv.go

    // license that can be found in the LICENSE file.
    
    //go:build (amd64 || arm64) && !purego
    
    package nistec
    
    import "errors"
    
    // Montgomery multiplication modulo org(G). Sets res = in1 * in2 * R⁻¹.
    //
    //go:noescape
    func p256OrdMul(res, in1, in2 *p256OrdElement)
    
    // Montgomery square modulo org(G), repeated n times (n >= 1).
    //
    //go:noescape
    func p256OrdSqr(res, in *p256OrdElement, n int)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. cmd/bucket-replication-utils_test.go

    		expErr: nil,
    		expDsc: ReplicateDecision{
    			targetsMap: map[string]replicateTargetDecision{
    				"arn:minio:replication::id:bucket":  newReplicateTargetDecision("arn:minio:replication::id:bucket", true, false),
    				"arn:minio:replication::id2:bucket": newReplicateTargetDecision("arn:minio:replication::id2:bucket", false, true),
    			},
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 08 20:27:40 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. hack/testdata/recursive/deployment/deployment/nginx-broken.yaml

    apiVersion: apps/v1
    ind: Deployment
    metadata:
      name: nginx2-deployment
      labels:
        app: nginx2-deployment
    spec:
      replicas: 2
      selector:
        matchLabels:
          app: nginx2
      template:
        metadata:
          labels:
            app: nginx2
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:1.7.9
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 370 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/id/ConfigurationCacheableIdFactoryTest.groovy

        def "creating ids again after loading is not allowed"() {
            def factory = new ConfigurationCacheableIdFactory()
    
            when:
            def id1 = factory.createId()
            def id2 = factory.createId()
            then:
            id1 != id2
    
            when:
            factory.idRecreated()
            factory.idRecreated()
            then:
            noExceptionThrown()
    
            when:
            factory.createId()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 15:27:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top