Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for unusual (0.21 sec)

  1. src/reflect/value.go

    	return (x + n - 1) &^ (n - 1)
    }
    
    // callMethod is the call implementation used by a function returned
    // by makeMethodValue (used by v.Method(i).Interface()).
    // It is a streamlined version of the usual reflect call: the caller has
    // already laid out the argument frame for us, so we don't have
    // to deal with individual Values for each argument.
    // It is in this file so that it can be next to the two similar functions above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        Extract the islands containing a TPU cluster computation into an outlined
        function in a nested module. This will allow to run the usual bridge on this
        nested module which now exhibits a more friendly "V2-like" structure.
        This is only intended for V1 compatibility mode where the bridge runs without
        feed/fetches on session create/extend.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

        assumeNotWindows()
        platform.assumeNotBouncyCastle()
    
        server.enqueue(MockResponse())
        val serverCertificate =
          HeldCertificate.Builder()
            .commonName("localhost") // Unusued for hostname verification.
            .addSubjectAlternativeName("wronghostname")
            .build()
        val serverCertificates =
          HandshakeCertificates.Builder()
            .heldCertificate(serverCertificate)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

          <version>4.0.0+</version>
          <description>Deployment repository contains the information needed for deploying to the remote
            repository, which adds uniqueVersion property to usual repositories for download.</description>
          <fields>
            <field>
              <name>uniqueVersion</name>
              <description>Whether to assign snapshots a unique version comprised of the timestamp and
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (!getType().cast<ShapedType>().getElementType().isSignlessIntOrFloat())
        return nullptr;
    
      // TODO(b/280099953) This algorithm only works for fixed width element types.
      // This is the usual case, but consider falling back to old approach
      // if transposing string tensors becomes needed while folding.
      if (!input_tensor.getElementType().isIntOrIndexOrFloat()) return nullptr;
      SmallVector<int64_t> perms;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.withUnknownList[0] != self.withUnknownList[3]",
    				"self.withUnknownList[0] != self.withUnknownList[5]",
    
    				// if all fields are known, equality works as usual
    				"self.withUnknownList[3] == self.withUnknownList[4]",
    				"self.withUnknownList[4] != self.withUnknownList[5]",
    			},
    			// only field declared in the schema can be field selected in CEL expressions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top