Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 134 for BOGUS (0.07 sec)

  1. src/os/exec/exec.go

    		}
    		if i < 0 {
    			if kv != "" {
    				// The entry is not of the form "key=value" (as it is required to be).
    				// Leave it as-is for now.
    				// TODO(#52436): should we strip or reject these bogus entries?
    				out = append(out, kv)
    			}
    			continue
    		}
    		k := kv[:i]
    		if caseInsensitive {
    			k = strings.ToLower(k)
    		}
    		if saw[k] {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    		}
    		cmp := tt.a.Compare(tt.b)
    		if got && cmp != -1 {
    			t.Errorf("Less(%q, %q) = true, but Compare = %v (not -1)", tt.a, tt.b, cmp)
    		}
    		if cmp < -1 || cmp > 1 {
    			t.Errorf("bogus Compare return value %v", cmp)
    		}
    		if cmp == 0 && tt.a != tt.b {
    			t.Errorf("Compare(%q, %q) = 0; but not equal", tt.a, tt.b)
    		}
    		if cmp == 1 && !tt.b.Less(tt.a) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

      @Test fun bogusDataFrameDoesNotDisruptConnection() {
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.sendFrame().data(true, 41, Buffer().writeUtf8("bogus"), 5)
        peer.acceptFrame() // RST_STREAM
        peer.sendFrame().ping(false, 2, 0)
        peer.acceptFrame() // PING
        peer.play()
    
        // Play it back.
        connect(peer)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    						Count:  10,
    						Check:  check.And(check.OK(), c),
    					}
    					src.CallOrFail(t, opt)
    				})
    			}
    		}
    		t.NewSubTest("before").Run(check)
    
    		SetWaypoint(t, Captured, "bogus-waypoint")
    		t.NewSubTest("with waypoint").Run(check)
    
    		SetWaypoint(t, Captured, "")
    		t.NewSubTest("waypoint removed").Run(check)
    	})
    }
    
    func TestServerRouting(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    			t.Errorf("loop %d: expected res.ContentLength of %v, got %v", i, e, g)
    		}
    		if all, err := io.ReadAll(res.Body); err != nil {
    			t.Errorf("loop %d: Body ReadAll: %v", i, err)
    		} else if len(all) != 0 {
    			t.Errorf("Bogus body %q", all)
    		}
    	}
    }
    
    // TestTransportHeadChunkedResponse verifies that we ignore chunked transfer-encoding
    // on responses to HEAD requests.
    func TestTransportHeadChunkedResponse(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

      fun openWithInvalidJournalLineClearsDirectory(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        cache.close()
        generateSomeGarbageFiles()
        createJournal("CLEAN k1 1 1", "BOGUS")
        createNewCache()
        assertGarbageFilesAllDeleted()
        assertThat(cache["k1"]).isNull()
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. src/go/build/build.go

    				// A nonexistent working directory can't be in a module.
    				return errNoModules
    			}
    		} else {
    			parent, err = filepath.Abs(ctxt.Dir)
    			if err != nil {
    				// If the caller passed a bogus Dir explicitly, that's materially
    				// different from not having modules enabled.
    				return err
    			}
    		}
    		for {
    			if f, err := ctxt.openFile(ctxt.joinPath(parent, "go.mod")); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

      EXPECT_EQ(attr_value.type(), tensorflow::DT_INT32);
    
      // Test not found errors in TF_Operation*() query functions.
      EXPECT_EQ(-1, TF_OperationOutputListLength(feed, "bogus", s));
      EXPECT_EQ(TF_INVALID_ARGUMENT, TF_GetCode(s));
    
      ASSERT_FALSE(GetAttrValue(feed, "missing", &attr_value, s));
      EXPECT_EQ(string("Operation 'feed' has no attr named 'missing'."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	// returned ClientConn accounts for the upcoming RoundTrip
    	// call, so the caller should not omit it. If the caller needs
    	// to, ClientConn.RoundTrip can be called with a bogus
    	// new(http.Request) to release the stream reservation.
    	GetClientConn(req *Request, addr string) (*http2ClientConn, error)
    	MarkDead(*http2ClientConn)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        server.useHttps(handshakeCertificates.sslSocketFactory())
        // The inclusion of a body in the response to a CONNECT is key to reproducing b/6754912.
        server.enqueue(
          MockResponse(
            body = "bogus proxy connect response content",
            inTunnel = true,
          ),
        )
        server.enqueue(MockResponse(body = "response"))
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top