Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for variants (0.31 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class TypeVarianceConflictErrorImpl(
        override val typeParameter: KaTypeParameterSymbol,
        override val typeParameterVariance: Variance,
        override val variance: Variance,
        override val containingType: KaType,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %1 = "tf.TensorListGetItem"(%0, %arg2, %arg1) {device = "/job:localhost/replica:0/task:0/device:GPU:0"} : (tensor<!tf_type.variant<tensor<1x32xf32>>>, tensor<i32>, tensor<2xi32>) -> tensor<1x32xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // xn--mgberp4a5d4ar ("AlSaudiah", Arabic) : SA
    // http://www.nic.net.sa/
    السعودية
    
    // xn--mgberp4a5d4a87g ("AlSaudiah", Arabic, variant)  : SA
    السعودیة
    
    // xn--mgbqly7c0a67fbc ("AlSaudiah", Arabic, variant) : SA
    السعودیۃ
    
    // xn--mgbqly7cvafr ("AlSaudiah", Arabic, variant) : SA
    السعوديه
    
    // xn--mgbpl2fh ("sudan", Arabic) : SD
    // Operated by .sd registry
    سودان
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

            "sds": {
              "token": {
                "aud": "istio-ca"
              }
            },
            "sts": {
              "servicePort": 0
            },
            "tag": "1.1.4",
            "variant": ""
          },
          "istio_cni": {
            "chained": true,
            "enabled": false
          },
          "revision": "",
          "sidecarInjectorWebhook": {
            "alwaysInjectSelector": [],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

          metadata = ""} : (
                  tensor<4xf32>,
                  tensor<3xf32>,
                  tensor<!tf_type.resource>,
                  tensor<2xf32>) -> tensor<!tf_type.variant>
      return %0 : tensor<!tf_type.variant>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    		if deviceOpenedErr != nil {
    			return false, deviceToDetach.GenerateErrorDetailed("DeviceOpened failed", deviceOpenedErr)
    		}
    	}
    	return deviceOpened, nil
    }
    
    // findDetachablePluginBySpec is a variant of VolumePluginMgr.FindAttachablePluginByName() function.
    // The difference is that it bypass the CanAttach() check for CSI plugin, i.e. it assumes all CSI plugin supports detach.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // When using modules, downloaded packages are stored in the module cache.
    // See https://golang.org/ref/mod#module-cache.
    //
    // When using modules, an additional variant of the go-import meta tag is
    // recognized and is preferred over those listing version control systems.
    // That variant uses "mod" as the vcs in the content value, as in:
    //
    //	<meta name="go-import" content="example.org mod https://code.org/moduleproxy">
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    		t.Errorf("error = %v; want %v", err, wantErr)
    	}
    }
    
    // Issue 23399: verify that if a client request times out, the Transport's
    // conn is closed so that it's not reused.
    //
    // This is the test variant that times out before the server replies with
    // any response headers.
    func TestClientTimeoutKillsConn_BeforeHeaders(t *testing.T) {
    	run(t, testClientTimeoutKillsConn_BeforeHeaders, []testMode{http1Mode})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (mean && !IsOfRankedFloatTensorType(mean, 1))
        return op.emitOpError("requires mean to be a 1D float tensor");
    
      auto variance = GetRankedTensorTypeForOperand(op.getVariance());
      if (variance && !IsOfRankedFloatTensorType(variance, 1))
        return op.emitOpError("requires variance to be a 1D float tensor");
    
      // TODO(antiagainst): check attributes
    
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top