Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for MULTIPLE (0.41 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @testReshape(%arg0: tensor<10x10x10x10xf32>) -> tensor<100x100xf32> {
      %shape1 = arith.constant dense<-1> : tensor<2xi32>
      // expected-error @+1 {{requires 'shape' to have at most one dynamic dimension, but got multiple dynamic dimensions at indices 0 and 1}}
      %r1 = "tf.Reshape" (%arg0, %shape1) : (tensor<10x10x10x10xf32>, tensor<2xi32>) -> tensor<100x100xf32>
      func.return %r1 : tensor<100x100xf32>
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

          assertThat(cached).isNotNull()
          cached!!.body.close()
        } else {
          assertThat(cached).isNull()
        }
        server.shutdown() // tearDown() isn't sufficient; this test starts multiple servers
      }
    
      private fun assertSubsequentResponseCached(
        initialResponseCode: Int,
        finalResponseCode: Int,
      ) {
        server = MockWebServer()
        val builder =
          MockResponse.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		}
    		if _, err := registry.Create(testContext, podB, rest.ValidateAllObjectFunc, &metav1.CreateOptions{}); err != nil {
    			t.Errorf("Unexpected error: %v", err)
    		}
    
    		// Kick off multiple delete collection calls to test notfound behavior
    		wg := &sync.WaitGroup{}
    		for j := 0; j < 2; j++ {
    			wg.Add(1)
    			go func() {
    				defer wg.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  5. src/reflect/value.go

    // Most functions and methods never return an invalid value.
    // If one does, its documentation states the conditions explicitly.
    //
    // A Value can be used concurrently by multiple goroutines provided that
    // the underlying Go value can be used concurrently for the equivalent
    // direct operations.
    //
    // To compare two Values, compare the results of the Interface method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          variable_nodes[shared_name] = var_node
    
      return variable_nodes
    
    
    class MultipleSignatureModel(module.Module):
      """A model with 2 signatures.
    
      Used to test where the quantizer has to handle multiple signatures.
      """
    
      def __init__(self):
        self.matmul_filters = random_ops.random_uniform(
            shape=(4, 3), minval=-1.0, maxval=1.0
        )
        self.conv_filters = np.random.uniform(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

            for ( ;; ) {
                try {
                    doConnect();
                    return;
                } catch(SmbAuthException sae) {
                    throw sae; // Prevents account lockout on servers with multiple IPs
                } catch(SmbException se) {
                    if (getNextAddress() == null) 
                        throw se;
                    if (log.level >= 3)
                        se.printStackTrace(log);
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    			}
    		}
    		return destroyCount >= 1, nil
    	})
    
    	assert.NoError(t, err, "wait should not return error")
    	// housekeeping can get called multiple times. The cgroup Destroy() is
    	// done within a goroutine and can get called multiple times, so the
    	// Destroy() count in not deterministic on the actual number.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    standard upstream validation logic. # This is an alternative to deploying the standalone validation server the project provides. # This is disabled by default, as the cluster may already have a validation server; while technically # it works to have multiple redundant validations, this adds complexity and operational risks. # Users should consider enabling this if they want full gateway-api validation but don't have other validation servers. validateGateway: false istiodRemote: # Sidecar injector mutating...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top