Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for broken2 (0.17 sec)

  1. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

          factory.setAccessible(true);
        }
        // Sorts methods/constructors with the least number of parameters first since it's likely easier
        // to fill dummy parameter values for them. Ties are broken by name then by the string form of
        // the parameter list.
        return BY_NUMBER_OF_PARAMETERS
            .compound(BY_METHOD_NAME)
            .compound(BY_PARAMETERS)
            .immutableSortedCopy(factories);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          //
          // This workaround enables converting Keras RNN without specifying batch
          // dimension. This isn't guaranteed to work, but it doesn't break any
          // non-broken cases either (since it's already broken if `element_shape`
          // contains -1).
          // TODO(b/142096690): Support dynamic element shape and remove the
          // workaround.
          SmallVector<int32_t, 4> new_element_shape_values;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

          factory.setAccessible(true);
        }
        // Sorts methods/constructors with the least number of parameters first since it's likely easier
        // to fill dummy parameter values for them. Ties are broken by name then by the string form of
        // the parameter list.
        return BY_NUMBER_OF_PARAMETERS
            .compound(BY_METHOD_NAME)
            .compound(BY_PARAMETERS)
            .immutableSortedCopy(factories);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. cmd/object-multipart-handlers.go

    			if len(etag) >= 32 && strings.Count(etag, "-") != 1 {
    				etag = etag[len(etag)-32:]
    			}
    		}
    	}
    
    	// We must not use the http.Header().Set method here because some (broken)
    	// clients expect the ETag header key to be literally "ETag" - not "Etag" (case-sensitive).
    	// Therefore, we have to set the ETag directly as map entry.
    	w.Header()[xhttp.ETag] = []string{"\"" + etag + "\""}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/storage/eviction_test.go

    			expectError:         "",
    			podPhase:            api.PodPending,
    			podName:             "t1",
    			expectedDeleteCount: 3,
    		},
    		// This test case is critical. If it is removed or broken we may
    		// regress and allow a pod to be deleted without checking PDBs when the
    		// pod should not be deleted.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    * ✏️ Fix broken link in `docs/tutorial/sql-databases.md` in several languages. PR [#10716](https://github.com/tiangolo/fastapi/pull/10716) by [@theoohoho](https://github.com/theoohoho).
    * ✏️ Remove broken links from `external_links.yml`. PR [#10943](https://github.com/tiangolo/fastapi/pull/10943) by [@Torabek](https://github.com/Torabek).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	etag := getDecryptedETag(formValues, objInfo, false)
    
    	// We must not use the http.Header().Set method here because some (broken)
    	// clients expect the ETag header key to be literally "ETag" - not "Etag" (case-sensitive).
    	// Therefore, we have to set the ETag directly as map entry.
    	w.Header()[xhttp.ETag] = []string{`"` + etag + `"`}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	// backslash is really an escape at all.
    	if quote != 0 {
    		return nil, errors.New("unterminated quoted string in pkgconf output")
    	}
    	if escaped {
    		return nil, errors.New("broken character escaping in pkgconf output")
    	}
    
    	if len(flag) > 0 || didQuote {
    		flags = append(flags, string(flag))
    	}
    	return flags, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    			!dst.Config().HasSidecar() {
    			// Check original source, unless there is a waypoint in the path. For waypoint, we don't (yet?) propagate original src.
    			// Self call is also (temporarily) broken
    			// Sidecars lose the original src
    			opt.Check = check.And(opt.Check, OriginalSourceCheck(t, src))
    		}
    
    		// Non-HBONE clients will attempt to bypass the waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. src/os/exec/exec_test.go

    }
    
    func TestAbsPathExec(t *testing.T) {
    	testenv.MustHaveExec(t)
    	testenv.MustHaveGoBuild(t) // must have GOROOT/bin/gofmt, but close enough
    
    	// A simple exec of a full path should work.
    	// Go 1.22 broke this on Windows, requiring ".exe"; see #66586.
    	exe := filepath.Join(testenv.GOROOT(t), "bin/gofmt")
    	cmd := exec.Command(exe)
    	if cmd.Path != exe {
    		t.Errorf("exec.Command(%#q) set Path=%#q", exe, cmd.Path)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top