Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for bug2 (0.05 sec)

  1. src/html/template/exec_test.go

    	{"bug2", "{{$.NonEmptyInterface.Method0}}", "M0", tVal, true},
    	// Struct values were not legal in with - mere oversight.
    	{"bug3", "{{with $}}{{.Method0}}{{end}}", "M0", tVal, true},
    	// Nil interface values in if.
    	{"bug4", "{{if .Empty0}}non-nil{{else}}nil{{end}}", "nil", tVal, true},
    	// Stringer.
    	{"bug5", "{{.Str}}", "foozle", tVal, true},
    	{"bug5a", "{{.Err}}", "erroozle", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	{"bug2", "{{$.NonEmptyInterface.Method0}}", "M0", tVal, true},
    	// Struct values were not legal in with - mere oversight.
    	{"bug3", "{{with $}}{{.Method0}}{{end}}", "M0", tVal, true},
    	// Nil interface values in if.
    	{"bug4", "{{if .Empty0}}non-nil{{else}}nil{{end}}", "nil", tVal, true},
    	// Stringer.
    	{"bug5", "{{.Str}}", "foozle", tVal, true},
    	{"bug5a", "{{.Err}}", "erroozle", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. src/bytes/bytes_test.go

    		if len(bmbuf) < 2*n {
    			bmbuf = make([]byte, 2*n)
    		}
    		buf1 := bmbuf[0:n]
    		buf2 := bmbuf[n : 2*n]
    		buf1[n-1] = 'x'
    		buf2[n-1] = 'x'
    		for i := 0; i < b.N; i++ {
    			eq := equal(buf1, buf2)
    			if !eq {
    				b.Fatal("bad equal")
    			}
    		}
    		buf1[n-1] = '\x00'
    		buf2[n-1] = '\x00'
    	}
    }
    
    func BenchmarkEqualBothUnaligned(b *testing.B) {
    	sizes := []int{64, 4 << 10}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

        bug where shutdown HTTP/2 connections were considered usable. This caused
        infinite loops when calls attempted to recover.
    
    
    ## Version 3.4.1
    
    _2016-07-10_
    
     *  **Fix a major bug in encoding HTTP headers.** In 3.4.0 and 3.4.0-RC1 OkHttp
        had an off-by-one bug in our HPACK encoder. This bug could have caused the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. src/bufio/bufio_test.go

    func TestWriterReset(t *testing.T) {
    	var buf1, buf2, buf3, buf4, buf5 strings.Builder
    	w := NewWriter(&buf1)
    	w.WriteString("foo")
    
    	w.Reset(&buf2) // and not flushed
    	w.WriteString("bar")
    	w.Flush()
    	if buf1.String() != "" {
    		t.Errorf("buf1 = %q; want empty", buf1.String())
    	}
    	if buf2.String() != "bar" {
    		t.Errorf("buf2 = %q; want bar", buf2.String())
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

            // fine and we have a bug in deadness analysis.
            return errors::Internal("Could not find input ", in_edge->DebugString(),
                                    " to ", n->name(),
                                    " when visiting the graph in post-order.  Most "
                                    "likely indicates a bug in deadness analysis.");
          }
          result->push_back(it->second);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. tensorflow/c/kernels_test.cc

      auto my_create_func = [](TF_OpKernelConstruction* ctx) {
        struct MyCustomKernel* s = new struct MyCustomKernel;
        s->created = true;
        s->compute_called = false;
    
        std::vector<string> list = {"bugs", "bunny", "duck"};
        int list_total_size = 0;
        for (const auto& s : list) {
          list_total_size += s.size();
        }
    
        TF_Status* status = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbSessionImpl.java

                        if ( e.getNtStatus() == NtStatus.NT_STATUS_INVALID_PARAMETER ) {
                            // a relatively large range of samba versions has a bug causing
                            // an invalid parameter error when a SPNEGO MIC is in place and auth fails
                            throw new SmbAuthException("Login failed", e);
                        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  9. pkg/controller/disruption/disruption_test.go

    	rc.Spec.Selector = labels
    	add(t, dc.rcStore, rc)
    	dc.sync(ctx, pdbName)
    
    	// It starts out at 0 expected because, with no pods, the PDB doesn't know
    	// about the RC.  This is a known bug.  TODO(mml): file issue
    	ps.VerifyPdbStatus(t, pdbName, 0, 0, 0, 0, map[string]metav1.Time{})
    
    	for i := int32(0); i < 3; i++ {
    		pod, _ := newPod(t, fmt.Sprintf("foobar %d", i))
    		updatePodOwnerToRc(t, pod, rc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/cache_test.go

    		},
    		{
    			name: "bug 91601, two nodes, update the snapshot and add two nodes in different zones",
    			operations: func(t *testing.T) {
    				addNode(t, 2)
    				addNode(t, 3)
    				updateSnapshot(t)
    				addNode(t, 4)
    				addNode(t, 0)
    			},
    			expected: []string{"node-2", "node-0", "node-3", "node-4"},
    		},
    		{
    			name: "bug 91601, 6 nodes, one in a different zone",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
Back to top