Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 804 for corerest (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/end-to-end-tpu-reshard-variables.mlir

    // TPUReshardVariables should be inserted even when While functions' shapes are
    // different than While operand shapes. Test the whole tf-tpu-bridge because
    // correct insertion of TPUReshardVariables depends on multiple passes including
    // TPUVariableRuntimeReformatting, ShapeInference, WhileRegion canonicalization,
    // and TPUMergeVariablesWithExecute.
    
    // CHECK-LABEL: module
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/unicode/utf8/utf8.go

    // its width in bytes. If p is empty it returns ([RuneError], 0). Otherwise, if
    // the encoding is invalid, it returns (RuneError, 1). Both are impossible
    // results for correct, non-empty UTF-8.
    //
    // An encoding is invalid if it is incorrect UTF-8, encodes a rune that is
    // out of range, or is not the shortest possible UTF-8 encoding for the
    // value. No other validation is performed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/path/filepath/path_windows.go

    			// If the path ends in a slash, strip any leading slashes from the next
    			// path element to avoid creating a UNC path (any path starting with "\\")
    			// from non-UNC elements.
    			//
    			// The correct behavior for Join when the first element is an incomplete UNC
    			// path (for example, "\\") is underspecified. We currently join subsequent
    			// elements so Join("\\", "host", "share") produces "\\host\share".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    Blocks are mapped to Gradle API methods.
    
    The code inside the function is executed against a `this` object called a _receiver_ in Kotlin lambda and a _delegate_ in Groovy closure.
    Gradle determines the correct `this` object and invokes the correct corresponding method.
    The `this` of the method invocation `id("plugin")` object is of type link:{javadocPath}/org/gradle/plugin/use/PluginDependenciesSpec.html[`PluginDependenciesSpec`].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/serviceentry_simulation_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    package core_test
    
    import (
    	"fmt"
    	"testing"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/simulation"
    	"istio.io/istio/pilot/test/xds"
    )
    
    const se = `
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

            "allDependencies"      | _
            "incomingFiles"        | _
            "incomingDependencies" | _
            "copy"                 | _
            "filteredTree"         | _
        }
    
        def "builds correct artifacts when there is a project cycle in dependency graph - fluid: #fluid"() {
            makeFluid(fluid)
    
            // A graph from root compile -> child default -> root default, so not an actual cycle here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/ChecksumHashFunction.java

          if (bits == 32) {
            /*
             * The long returned from a 32-bit Checksum will have all 0s for its second word, so the
             * cast won't lose any information and is necessary to return a HashCode of the correct
             * size.
             */
            return HashCode.fromInt((int) value);
          } else {
            return HashCode.fromLong(value);
          }
        }
      }
    
      @J2ObjCIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 22:01:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunication.java

        }
    
        @SuppressWarnings("DefaultCharset")
        public DaemonStartupInfo readDiagnostics(String message) {
            //Assuming the message has correct format. Not bullet proof, but seems to work ok for now.
            if (!message.startsWith(daemonGreeting())) {
                throw new IllegalArgumentException(String.format("Unexpected daemon startup message: %s", message));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/cycles5.go

    type T13 /* ERROR "invalid recursive type T13" */ [len(b13)]int
    var b13 T13
    
    func g1() [unsafe.Sizeof(g1)]int
    func g2() [unsafe.Sizeof(x2)]int
    var x2 = g2
    
    // verify that we get the correct sizes for the functions above
    // (note: assert is statically evaluated in go/types test mode)
    func init() {
    	assert(unsafe.Sizeof(g1) == 8)
    	assert(unsafe.Sizeof(x2) == 8)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/go/types/instantiate.go

    	case *Alias:
    		// TODO(gri) is this correct?
    		assert(expanding == nil) // Alias instances cannot be reached from Named types
    
    		tparams := orig.TypeParams()
    		// TODO(gri) investigate if this is needed (type argument and parameter count seem to be correct here)
    		if !check.validateTArgLen(pos, orig.String(), tparams.Len(), len(targs)) {
    			return Typ[Invalid]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top