Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 96 for Invert (0.43 sec)

  1. src/cmd/link/internal/ld/data.go

    // ARM, PPC64, PPC64LE and RISCV64 support trampoline insertion for internal
    // and external linking. On PPC64 and PPC64LE the text sections might be split
    // but will still insert trampolines where necessary.
    func trampoline(ctxt *Link, s loader.Sym) {
    	if thearch.Trampoline == nil {
    		return // no need or no support of trampolines on this arch
    	}
    
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    	}
    
    	if err = untar(ctx, hreader, putObjectTar, opts); err != nil {
    		apiErr := errorCodes.ToAPIErr(s3Err)
    		// If not set, convert or use BadRequest
    		if s3Err == ErrNone {
    			apiErr = toAPIError(ctx, err)
    			if apiErr.Code == "InternalError" {
    				// Convert generic internal errors to bad requests.
    				apiErr = APIError{
    					Code:           "BadRequest",
    					Description:    err.Error(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      if (!axes_attr || !shape_attr) return false;
    
      if (shape_attr.getNumElements() != type.getRank()) return false;
    
      llvm::SmallSet<uint64_t, 4> axes_set;
      for (auto a : axes_attr.getValues<APInt>()) {
        axes_set.insert(a.getZExtValue());
      }
    
      auto type_shape = type.getShape();
      for (uint64_t i = 0; i < type.getRank(); ++i) {
        if (axes_set.contains(i)) {
          if (shape_attr.getValues<APInt>()[i] != 1) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. cmd/server_test.go

    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    	response.Body.Close()
    }
    
    // TestCopyObject - Validates copy object.
    // The following is the test flow.
    // 1. Create bucket.
    // 2. Insert Object.
    // 3. Use "X-Amz-Copy-Source" header to copy the previously created object.
    // 4. Validate the content of copied object.
    func (s *TestSuiteCommon) TestCopyObject(c *check) {
    	// generate a random bucket name.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		// This sequence is intending to elide type information, but produce an
    		// intermediate structure (map) that can be manually patched up to make
    		// the comparison work as needed.
    
    		// Convert both structs to maps of primitives.
    		inBytes, err := json.Marshal(in)
    		if err != nil {
    			t.Fatalf("failed to json.Marshal(in): %v", err)
    		}
    		outBytes, err := json.Marshal(out)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

          local node_binary_gs_url="${staging_path}/${NODE_BINARY_TAR##*/}"
          copy-to-staging "${staging_path}" "${node_binary_gs_url}" "${NODE_BINARY_TAR}" "${NODE_BINARY_TAR_HASH}"
        fi
    
        # Convert from gs:// URL to an https:// URL
        server_binary_tar_urls+=("${server_binary_gs_url/gs:\/\//https://storage.googleapis.com/}")
        if [[ -n "${NODE_BINARY_TAR:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    			checkJobCompletionLabel(t, &p)
    		}
    		ix := getCompletionIndex(p.Annotations)
    		if ix == -1 {
    			t.Errorf("Created pod %s didn't have completion index", p.Name)
    		} else {
    			gotIndexes.Insert(ix)
    		}
    		expectedName := fmt.Sprintf("%s-%d", jobName, ix)
    		if expectedName != p.Spec.Hostname {
    			t.Errorf("Got pod hostname %s, want %s", p.Spec.Hostname, expectedName)
    		}
    		expectedName += "-"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} should be numeric. */
        public static final String CONSTRAINTS_TypeDouble_MESSAGE = "{constraints.TypeDouble.message}";
    
        /** The key of the message: {item} cannot convert as {propertyType}. */
        public static final String CONSTRAINTS_TypeAny_MESSAGE = "{constraints.TypeAny.message}";
    
        /** The key of the message: {item} has wrong URI. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/jaxb/runtime/pom.xml
    quarkus/integration-tests/hibernate-orm-envers/pom.xml
    	quarkus/extensions/resteasy-reactive/quarkus-resteasy-reactive/runtime/pom.xml
    	quarkus/extensions/hibernate-orm/runtime/pom.xml
    	quarkus/extensions/hibernate-envers/runtime/pom.xml
    	quarkus/extensions/jdbc/jdbc-h2/runtime/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    		// To add the bucket replication rule, we fetch the current
    		// server configuration, and convert it to minio-go's
    		// replication configuration type (by converting to xml and
    		// parsing it back), use minio-go's add rule function, and
    		// finally convert it back to the server type (again via xml).
    		// This is needed as there is no add-rule function in the server
    		// yet.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top