Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for badly (0.06 sec)

  1. docs/changelogs/changelog_2x.md

     *  Fix: Never return null on `call.proceed()`. This was a bug in call
        cancelation.
     *  Fix: When a network interceptor mutates a request, that change is now
        reflected in `Response.networkResponse()`.
     *  Fix: Badly-behaving caches now throw a checked exception instead of a
        `NullPointerException`.
     *  Fix: Better handling of uncaught exceptions in MockWebServer with HTTP/2.
    
    ## Version 2.3.0
    
    _2015-03-16_
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	assert.NoError(t, asw.AddAttachUncertainReconstructedVolume(volumeName1, volumeSpec1, nodeName, ""))
    	assert.NoError(t, asw.MarkDeviceAsUncertain(volumeName1, "/dev/badly/reconstructed", "/var/lib/kubelet/plugins/global1", ""))
    	assert.NoError(t, asw.AddAttachUncertainReconstructedVolume(volumeName2, volumeSpec2, nodeName, ""))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	// TODO(sanposhiho): move all PreEnqueueCkeck to Requeue and delete it from this parameter eventually.
    	// Some PreEnqueueCheck include event filtering logic based on some in-tree plugins
    	// and it affect badly to other plugins.
    	// See https://github.com/kubernetes/kubernetes/issues/110175
    	MoveAllToActiveOrBackoffQueue(logger klog.Logger, event framework.ClusterEvent, oldObj, newObj interface{}, preCheck PreEnqueueCheck)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    | `https://example.com/my folder/` | `https://example.com/my%20folder/` | Spaces are not valid in URLs.
    | `https://example.com/my%%badly%encoded%path` | `https://example.com/my%25%25badly%25encoded%25path` | `%` must be encoded as `%25` in URLs, and no `%`-escapes should be invalid.
    |===
    
    [[deprecate_self_resolving_dependency]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	entry := v.Block.Func.Entry
    	if entry != v.Block {
    		base.Fatalf("in %s, badly placed LoweredGetClosurePtr: %v %v", v.Block.Func.Name, v.Block, v)
    	}
    	for _, w := range entry.Values {
    		if w == v {
    			break
    		}
    		switch w.Op {
    		case ssa.OpArgIntReg, ssa.OpArgFloatReg:
    			// okay
    		default:
    			base.Fatalf("in %s, badly placed LoweredGetClosurePtr: %v %v", v.Block.Func.Name, v.Block, v)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    //
    // A perfect hash seemed like overkill.
    //
    // The compiler's switch statement is the clear winner
    // as it produces a binary tree in code,
    // with constant conditions and good branch prediction.
    // (Sadly it is the most verbose in source code.)
    // Binary search suffered from poor branch prediction.
    func typeOf(n ast.Node) uint64 {
    	// Fast path: nearly half of all nodes are identifiers.
    	if _, ok := n.(*ast.Ident); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    		Authorization:  NewDelegatingAuthorizationOptions(),
    		Audit:          NewAuditOptions(),
    		Features:       NewFeatureOptions(),
    		CoreAPI:        NewCoreAPIOptions(),
    		// Wired a global by default that sadly people will abuse to have different meanings in different repos.
    		// Please consider creating your own FeatureGate so you can have a consistent meaning for what a variable contains
    		// across different repos.  Future you will thank you.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/cmd/internal/buildid/note.go

    	return "", nil
    }
    
    // The Go build ID is stored at the beginning of the Mach-O __text segment.
    // The caller has already opened filename, to get f, and read a few kB out, in data.
    // Sadly, that's not guaranteed to hold the note, because there is an arbitrary amount
    // of other junk placed in the file ahead of the main text.
    func readMacho(name string, f *os.File, data []byte) (buildid string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. hack/update-vendor-licenses.sh

      local find_maxdepth
      local find_names
      local -a local_files=()
    
      # Necessary to expand {}
      case ${type} in
          LICENSE) find_names=(-iname 'licen[sc]e*')
                   find_maxdepth=1
                   # Sadly inconsistent in the wild, but mostly license files
                   # containing copyrights, but no readme/notice files containing
                   # licenses (except to "see license file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    // Note that this does not test the "request too large"
    // exit path from the http server. This is intentional;
    // not sending Connection: close is just a minor wire
    // optimization and is pointless if dealing with a
    // badly behaved client.
    func TestHTTP10ConnectionHeader(t *testing.T) {
    	run(t, testHTTP10ConnectionHeader, []testMode{http1Mode})
    }
    func testHTTP10ConnectionHeader(t *testing.T, mode testMode) {
    	mux := NewServeMux()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top